結果

問題 No.1307 Rotate and Accumulate
ユーザー %20%20
提出日時 2020-12-04 02:25:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 878 ms / 5,000 ms
コード長 137 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 72,748 KB
最終ジャッジ日時 2024-09-14 13:10:19
合計ジャッジ時間 17,718 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 526 ms
43,672 KB
testcase_01 AC 527 ms
43,644 KB
testcase_02 AC 522 ms
43,792 KB
testcase_03 AC 525 ms
43,924 KB
testcase_04 AC 530 ms
43,788 KB
testcase_05 AC 536 ms
44,300 KB
testcase_06 AC 528 ms
44,300 KB
testcase_07 AC 527 ms
43,792 KB
testcase_08 AC 811 ms
63,200 KB
testcase_09 AC 799 ms
64,980 KB
testcase_10 AC 729 ms
62,144 KB
testcase_11 AC 706 ms
52,380 KB
testcase_12 AC 757 ms
61,560 KB
testcase_13 AC 570 ms
48,908 KB
testcase_14 AC 628 ms
52,360 KB
testcase_15 AC 864 ms
72,212 KB
testcase_16 AC 860 ms
72,208 KB
testcase_17 AC 870 ms
72,460 KB
testcase_18 AC 835 ms
58,744 KB
testcase_19 AC 855 ms
72,452 KB
testcase_20 AC 878 ms
72,748 KB
testcase_21 AC 521 ms
44,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy.fft import*
n,_,*a=map(int,open(0).read().split())
b=[0]*n
for i in a[n:]:b[-i]+=1
print(*map(int,ifft(fft(a[:n])*fft(b))+.5))
0