結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 517 ms
43,668 KB
testcase_01 AC 525 ms
43,284 KB
testcase_02 AC 515 ms
44,048 KB
testcase_03 AC 522 ms
43,284 KB
testcase_04 AC 520 ms
44,048 KB
testcase_05 AC 524 ms
43,664 KB
testcase_06 AC 521 ms
43,796 KB
testcase_07 AC 525 ms
43,412 KB
testcase_08 AC 688 ms
60,552 KB
testcase_09 AC 699 ms
61,856 KB
testcase_10 AC 676 ms
52,116 KB
testcase_11 AC 695 ms
50,336 KB
testcase_12 AC 689 ms
54,416 KB
testcase_13 AC 565 ms
45,964 KB
testcase_14 AC 590 ms
46,200 KB
testcase_15 AC 747 ms
57,428 KB
testcase_16 AC 760 ms
57,560 KB
testcase_17 AC 763 ms
57,572 KB
testcase_18 AC 730 ms
54,724 KB
testcase_19 AC 746 ms
57,796 KB
testcase_20 AC 757 ms
57,404 KB
testcase_21 AC 526 ms
43,540 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