結果

問題 No.1307 Rotate and Accumulate
ユーザー 👑 testestesttestestest
提出日時 2020-12-04 01:54:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 930 ms / 5,000 ms
コード長 136 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 60,052 KB
最終ジャッジ日時 2024-09-14 12:16:14
合計ジャッジ時間 17,672 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 526 ms
43,420 KB
testcase_01 AC 523 ms
44,184 KB
testcase_02 AC 520 ms
43,548 KB
testcase_03 AC 518 ms
44,180 KB
testcase_04 AC 514 ms
43,536 KB
testcase_05 AC 517 ms
43,404 KB
testcase_06 AC 523 ms
43,928 KB
testcase_07 AC 521 ms
43,796 KB
testcase_08 AC 798 ms
59,372 KB
testcase_09 AC 816 ms
60,052 KB
testcase_10 AC 762 ms
53,016 KB
testcase_11 AC 738 ms
50,024 KB
testcase_12 AC 782 ms
53,944 KB
testcase_13 AC 589 ms
46,092 KB
testcase_14 AC 651 ms
46,872 KB
testcase_15 AC 926 ms
59,412 KB
testcase_16 AC 930 ms
59,024 KB
testcase_17 AC 923 ms
59,272 KB
testcase_18 AC 888 ms
54,004 KB
testcase_19 AC 922 ms
58,900 KB
testcase_20 AC 929 ms
58,888 KB
testcase_21 AC 524 ms
43,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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