結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
44,008 KB
testcase_01 AC 530 ms
43,544 KB
testcase_02 AC 520 ms
43,664 KB
testcase_03 AC 520 ms
43,904 KB
testcase_04 AC 517 ms
43,920 KB
testcase_05 AC 517 ms
43,796 KB
testcase_06 AC 513 ms
44,044 KB
testcase_07 AC 520 ms
43,924 KB
testcase_08 AC 785 ms
59,628 KB
testcase_09 AC 814 ms
60,324 KB
testcase_10 AC 747 ms
53,384 KB
testcase_11 AC 728 ms
49,908 KB
testcase_12 AC 762 ms
53,552 KB
testcase_13 AC 575 ms
46,080 KB
testcase_14 AC 635 ms
46,860 KB
testcase_15 AC 918 ms
58,644 KB
testcase_16 AC 934 ms
58,776 KB
testcase_17 AC 922 ms
59,152 KB
testcase_18 AC 884 ms
53,376 KB
testcase_19 AC 913 ms
59,024 KB
testcase_20 AC 919 ms
58,896 KB
testcase_21 AC 520 ms
43,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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