結果

問題 No.1307 Rotate and Accumulate
ユーザー Kiri8128Kiri8128
提出日時 2020-12-04 02:18:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 639 ms / 5,000 ms
コード長 372 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 143,792 KB
最終ジャッジ日時 2024-09-14 13:03:47
合計ジャッジ時間 7,654 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 41 ms
52,352 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
52,736 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 379 ms
111,180 KB
testcase_09 AC 405 ms
114,812 KB
testcase_10 AC 283 ms
101,268 KB
testcase_11 AC 347 ms
109,128 KB
testcase_12 AC 291 ms
101,136 KB
testcase_13 AC 84 ms
83,252 KB
testcase_14 AC 154 ms
86,248 KB
testcase_15 AC 637 ms
143,792 KB
testcase_16 AC 637 ms
143,792 KB
testcase_17 AC 639 ms
143,548 KB
testcase_18 AC 325 ms
119,692 KB
testcase_19 AC 636 ms
143,440 KB
testcase_20 AC 360 ms
131,448 KB
testcase_21 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K = 28
f = lambda L: int("".join([bin(a + (1 << K))[3:] for a in L]), 2)
N, Q = map(int, input().split())
A = [int(a) for a in input().split()]
R = [int(a) for a in input().split()]
C = [0] * N
for r in R: C[r] += 1
X = f(A) * f(C[::-1])
S = bin((X >> (K * N)) + (X & ((1 << K * N) - 1)) + (1 << K * N))[3:]
print(" ".join([str(int(S[i*K:(i+1)*K], 2)) for i in range(N)]))
0