結果

問題 No.1307 Rotate and Accumulate
ユーザー KudeKude
提出日時 2020-12-04 03:23:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 917 ms / 5,000 ms
コード長 133 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 60,896 KB
最終ジャッジ日時 2024-09-14 14:02:13
合計ジャッジ時間 18,490 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 512 ms
43,900 KB
testcase_01 AC 513 ms
43,780 KB
testcase_02 AC 514 ms
44,172 KB
testcase_03 AC 510 ms
44,280 KB
testcase_04 AC 515 ms
43,904 KB
testcase_05 AC 522 ms
43,768 KB
testcase_06 AC 516 ms
43,784 KB
testcase_07 AC 516 ms
44,312 KB
testcase_08 AC 786 ms
59,292 KB
testcase_09 AC 809 ms
60,896 KB
testcase_10 AC 749 ms
53,260 KB
testcase_11 AC 730 ms
50,124 KB
testcase_12 AC 773 ms
54,440 KB
testcase_13 AC 581 ms
46,096 KB
testcase_14 AC 648 ms
46,960 KB
testcase_15 AC 917 ms
58,764 KB
testcase_16 AC 914 ms
58,516 KB
testcase_17 AC 905 ms
58,380 KB
testcase_18 AC 875 ms
54,280 KB
testcase_19 AC 900 ms
58,764 KB
testcase_20 AC 912 ms
58,752 KB
testcase_21 AC 515 ms
44,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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