結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 517 ms
43,544 KB
testcase_01 AC 521 ms
43,684 KB
testcase_02 AC 517 ms
43,928 KB
testcase_03 AC 525 ms
44,056 KB
testcase_04 AC 521 ms
43,540 KB
testcase_05 AC 521 ms
43,684 KB
testcase_06 AC 520 ms
43,548 KB
testcase_07 AC 524 ms
43,936 KB
testcase_08 AC 771 ms
60,796 KB
testcase_09 AC 788 ms
61,968 KB
testcase_10 AC 731 ms
52,376 KB
testcase_11 AC 708 ms
50,340 KB
testcase_12 AC 747 ms
55,316 KB
testcase_13 AC 575 ms
46,116 KB
testcase_14 AC 622 ms
47,156 KB
testcase_15 AC 877 ms
57,552 KB
testcase_16 AC 874 ms
57,536 KB
testcase_17 AC 878 ms
57,204 KB
testcase_18 AC 853 ms
54,728 KB
testcase_19 AC 863 ms
57,824 KB
testcase_20 AC 875 ms
57,288 KB
testcase_21 AC 519 ms
44,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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