結果

問題 No.1307 Rotate and Accumulate
ユーザー KudeKude
提出日時 2020-12-04 06:47:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 930 ms / 5,000 ms
コード長 129 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 64,608 KB
最終ジャッジ日時 2024-09-14 16:59:24
合計ジャッジ時間 19,313 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 524 ms
43,788 KB
testcase_01 AC 517 ms
44,300 KB
testcase_02 AC 514 ms
43,792 KB
testcase_03 AC 524 ms
43,916 KB
testcase_04 AC 518 ms
43,784 KB
testcase_05 AC 514 ms
43,920 KB
testcase_06 AC 517 ms
44,048 KB
testcase_07 AC 513 ms
43,796 KB
testcase_08 AC 852 ms
61,936 KB
testcase_09 AC 801 ms
63,868 KB
testcase_10 AC 744 ms
55,020 KB
testcase_11 AC 732 ms
50,420 KB
testcase_12 AC 766 ms
60,752 KB
testcase_13 AC 584 ms
46,480 KB
testcase_14 AC 641 ms
49,476 KB
testcase_15 AC 930 ms
64,336 KB
testcase_16 AC 920 ms
64,328 KB
testcase_17 AC 920 ms
64,608 KB
testcase_18 AC 890 ms
54,832 KB
testcase_19 AC 917 ms
64,100 KB
testcase_20 AC 920 ms
64,228 KB
testcase_21 AC 517 ms
43,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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