結果

問題 No.1307 Rotate and Accumulate
ユーザー Eki1009Eki1009
提出日時 2021-03-21 03:36:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 980 ms / 5,000 ms
コード長 315 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 71,704 KB
最終ジャッジ日時 2024-11-21 17:50:13
合計ジャッジ時間 19,688 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 547 ms
56,980 KB
testcase_01 AC 546 ms
56,612 KB
testcase_02 AC 546 ms
56,588 KB
testcase_03 AC 544 ms
56,748 KB
testcase_04 AC 544 ms
56,724 KB
testcase_05 AC 545 ms
56,216 KB
testcase_06 AC 547 ms
56,472 KB
testcase_07 AC 548 ms
56,856 KB
testcase_08 AC 654 ms
60,444 KB
testcase_09 AC 668 ms
61,656 KB
testcase_10 AC 679 ms
64,608 KB
testcase_11 AC 632 ms
59,968 KB
testcase_12 AC 677 ms
64,004 KB
testcase_13 AC 591 ms
60,088 KB
testcase_14 AC 620 ms
61,412 KB
testcase_15 AC 770 ms
71,704 KB
testcase_16 AC 980 ms
70,568 KB
testcase_17 AC 765 ms
70,296 KB
testcase_18 AC 747 ms
59,904 KB
testcase_19 AC 764 ms
68,328 KB
testcase_20 AC 765 ms
68,232 KB
testcase_21 AC 543 ms
56,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
n, q = map(int, input().split())
A = tuple(map(int, input().split()))
R = tuple(map(int, input().split()))
B = [0]*n
for r in R:
    B[n-1-r] += 1
B *= 2
A = np.array(A)
B = np.array(B)
m = 1 << 18
C = np.round(np.fft.irfft(np.fft.rfft(A, m) * np.fft.rfft(B, m)))[n-1:2*n-1].astype(int)
print(*C)
0