結果
問題 | No.1068 #いろいろな色 / Red and Blue and more various colors (Hard) |
ユーザー | Kiri8128 |
提出日時 | 2020-05-30 03:10:08 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 859 bytes |
コンパイル時間 | 291 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 104,488 KB |
最終ジャッジ日時 | 2024-11-06 18:28:33 |
合計ジャッジ時間 | 7,723 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,880 KB |
testcase_01 | AC | 31 ms
10,880 KB |
testcase_02 | AC | 30 ms
10,752 KB |
testcase_03 | AC | 201 ms
19,092 KB |
testcase_04 | AC | 142 ms
15,276 KB |
testcase_05 | AC | 158 ms
16,288 KB |
testcase_06 | AC | 123 ms
15,128 KB |
testcase_07 | AC | 114 ms
14,812 KB |
testcase_08 | AC | 152 ms
15,960 KB |
testcase_09 | AC | 169 ms
16,328 KB |
testcase_10 | AC | 78 ms
13,324 KB |
testcase_11 | AC | 112 ms
14,904 KB |
testcase_12 | AC | 71 ms
12,916 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
P = 998244353 K = 216 KK = 1 << K N, Q = map(int, input().split()) A = [1] * N + [KK + (int(a) - 1) % P for a in input().split()] pa1 = (1 << 144) - ((1 << 144) % P) pa2 = (1 << 96) - ((1 << 96) % P) pa3 = (1 << 64) - ((1 << 64) % P) def modP(x): x -= ((x & m1) >> 144) * pa1 x -= ((x & m2) >> 96) * pa2 x -= ((x & m3) >> 64) * pa3 return x for i in range(N)[::-1]: if i == N - 1 or i and 1 << i.bit_length() - 1 == i: if i == N - 1: c = 2 else: c *= 2 m1 = int(("1" * 72 + "0" * 144) * c, 2) m2 = int(("1" * 120 + "0" * 96) * c, 2) m3 = int(("1" * 152 + "0" * 64) * c, 2) A[i] = modP(A[2*i] * A[2*i+1]) t = bin(A[1])[2:] + "_" X = [int(t[-(i+1) * K - 1:-i * K - 1], 2) % P for i in range((len(t)+K-2) // K)] for a in [int(a) for a in input().split()]: print(X[a])