結果
問題 | No.142 単なる配列の操作に関する実装問題 |
ユーザー | maspy |
提出日時 | 2020-05-01 01:03:34 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,116 bytes |
コンパイル時間 | 236 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 129,312 KB |
最終ジャッジ日時 | 2024-06-01 05:09:00 |
合計ジャッジ時間 | 19,404 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2,778 ms
122,496 KB |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
ソースコード
import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines B = 10 ** 5 + 10 N, S, X, Y, Z = map(int, readline().split()) def gen_A(): x = S for i in range(N): yield x & 1 x = X * x + Y x %= Z A_str = ''.join(map(str, gen_A())) nums = [] for i in range((N + B - 1) // B): nums.append(int(A_str[B * i:B * i + B][::-1], 2)) def get(L, R): i = L // B L -= B * i R -= B * i if B >= R: x = nums[i] >> L else: x = (nums[i] >> L) ^ (nums[i + 1] << B - L) return x & ((1 << R - L) - 1) def add(L, R, x): i = L // B L -= B * i R -= B * i if B >= R: nums[i] ^= x << L return nums[i] ^= (x & ((1 << B - L) - 1)) << L nums[i + 1] ^= x >> (B - L) Q = int(readline()) m = map(int, read().split()) for s, t, u, v in zip(m, m, m, m): x = get(s - 1, t) add(u - 1, v, x) for i in range(len(nums)): nums[i] = bin(nums[i])[2:][::-1] nums[i] += '0' * (B - len(nums[i])) x = ''.join(nums)[:N] print(x.replace('0', 'E').replace('1', 'O'))