結果

問題 No.1068 #いろいろな色 / Red and Blue and more various colors (Hard)
ユーザー Kiri8128Kiri8128
提出日時 2020-05-30 01:58:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 450 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 41,688 KB
最終ジャッジ日時 2024-11-06 15:08:12
合計ジャッジ時間 8,221 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,960 KB
testcase_01 AC 31 ms
11,264 KB
testcase_02 AC 31 ms
11,264 KB
testcase_03 AC 338 ms
12,388 KB
testcase_04 AC 218 ms
12,036 KB
testcase_05 AC 270 ms
12,204 KB
testcase_06 AC 164 ms
11,864 KB
testcase_07 AC 139 ms
11,732 KB
testcase_08 AC 241 ms
12,132 KB
testcase_09 AC 308 ms
12,236 KB
testcase_10 AC 87 ms
11,424 KB
testcase_11 AC 131 ms
11,692 KB
testcase_12 AC 73 ms
11,392 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
P = 998244353
K = 96
A = [(int(a) - 1) % P for a in input().split()]
m = int(("1" * 32 + "0" * 64) * 5010, 2)
pa = (1 << 64) - ((1 << 64) % P)
modP = lambda x: x - ((x & m) >> 64) * pa
s = 1
for i, a in enumerate(A):
    s *= (1 << K) + a
    s = modP(s)

t = bin(s)[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])
0