結果

問題 No.1307 Rotate and Accumulate
ユーザー NyaanNyaanNyaanNyaan
提出日時 2020-12-04 01:32:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 771 ms / 5,000 ms
コード長 166 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 61,840 KB
最終ジャッジ日時 2024-09-14 11:47:03
合計ジャッジ時間 16,174 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 515 ms
44,184 KB
testcase_01 AC 524 ms
43,920 KB
testcase_02 AC 529 ms
43,668 KB
testcase_03 AC 531 ms
43,532 KB
testcase_04 AC 539 ms
43,792 KB
testcase_05 AC 528 ms
44,176 KB
testcase_06 AC 529 ms
43,668 KB
testcase_07 AC 532 ms
43,668 KB
testcase_08 AC 699 ms
61,288 KB
testcase_09 AC 701 ms
61,840 KB
testcase_10 AC 677 ms
52,492 KB
testcase_11 AC 636 ms
50,336 KB
testcase_12 AC 697 ms
54,528 KB
testcase_13 AC 577 ms
46,096 KB
testcase_14 AC 601 ms
46,312 KB
testcase_15 AC 771 ms
57,012 KB
testcase_16 AC 764 ms
57,416 KB
testcase_17 AC 755 ms
57,416 KB
testcase_18 AC 725 ms
54,596 KB
testcase_19 AC 749 ms
57,284 KB
testcase_20 AC 754 ms
57,288 KB
testcase_21 AC 519 ms
43,536 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(*(F.ifft(F.fft(a)*F.fft(b))+.5).astype(int))
0