96 人解决,131 人已尝试。
113 份提交通过,共有 371 份提交。
3.7 EMB 奖励。
单点时限: 2.0 sec
内存限制: 256 MB
Computers normally cannot generate really random numbers, but frequently are used to generate sequences of pseudo-random numbers. These are generated by some algorithm, but appear for all practical purposes to be really random. Random numbers are used in many applications, including simulation.
A common pseudo-random number generation technique is called the linear congruential method. If the last pseudo-random number generated was
As you can see, the sequence of pseudo-random numbers generated by this technique repeats after six numbers. It should be clear that the longest sequence that can be generated using this technique is limited by the modulus,
In this problem you will be given sets of values for
Each input line will contain four integer values, in order, for
For each input line, display the case number (they are sequentially numbered, starting with
7 5 12 4 5173 3849 3279 1511 9111 5309 6000 1234 1079 2136 9999 1237 2054 4849 7436 3483 0 0 0 0
Case 1: 6 Case 2: 546 Case 3: 500 Case 4: 220 Case 5: 10
96 人解决,131 人已尝试。
113 份提交通过,共有 371 份提交。
3.7 EMB 奖励。