結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 515 ms
44,288 KB
testcase_01 AC 517 ms
44,300 KB
testcase_02 AC 516 ms
44,164 KB
testcase_03 AC 513 ms
44,308 KB
testcase_04 AC 514 ms
44,176 KB
testcase_05 AC 520 ms
44,048 KB
testcase_06 AC 527 ms
44,428 KB
testcase_07 AC 521 ms
44,552 KB
testcase_08 AC 791 ms
59,356 KB
testcase_09 AC 812 ms
59,948 KB
testcase_10 AC 751 ms
52,748 KB
testcase_11 AC 738 ms
50,404 KB
testcase_12 AC 770 ms
54,436 KB
testcase_13 AC 578 ms
46,488 KB
testcase_14 AC 646 ms
47,108 KB
testcase_15 AC 925 ms
60,308 KB
testcase_16 AC 919 ms
59,812 KB
testcase_17 AC 923 ms
59,792 KB
testcase_18 AC 888 ms
54,020 KB
testcase_19 AC 908 ms
59,812 KB
testcase_20 AC 916 ms
59,944 KB
testcase_21 AC 523 ms
43,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy.fft import fft,ifft
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