結果
問題 | No.142 単なる配列の操作に関する実装問題 |
ユーザー | maspy |
提出日時 | 2020-04-09 21:33:24 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 588 bytes |
コンパイル時間 | 336 ms |
コンパイル使用メモリ | 82,328 KB |
実行使用メモリ | 273,100 KB |
最終ジャッジ日時 | 2024-09-13 21:19:09 |
合計ジャッジ時間 | 14,173 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
ソースコード
import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines N, S, X, Y, Z = map(int, readline().split()) A = [0] * N A[0] = S & 1 x = S for i in range(1, N): x = (x * X + Y) % Z A[i] = x & 1 A = int(''.join(map(str, reversed(A))), 2) Q = int(readline()) m = map(int, read().split()) for s, t, u, v in zip(m, m, m, m): mask = (1 << t) - 1 B = (A & mask) >> (s - 1) A ^= B << (u - 1) parity = bin(A)[2:][::-1] parity += '0' * (N - len(parity)) answer = parity.replace('0', 'E').replace('1', 'O') print(answer)