結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 519 ms
43,908 KB
testcase_01 AC 523 ms
43,532 KB
testcase_02 AC 519 ms
44,048 KB
testcase_03 AC 517 ms
43,924 KB
testcase_04 AC 515 ms
43,664 KB
testcase_05 AC 525 ms
43,536 KB
testcase_06 AC 530 ms
43,916 KB
testcase_07 AC 522 ms
43,532 KB
testcase_08 AC 683 ms
61,156 KB
testcase_09 AC 693 ms
62,372 KB
testcase_10 AC 674 ms
51,728 KB
testcase_11 AC 635 ms
50,972 KB
testcase_12 AC 693 ms
54,532 KB
testcase_13 AC 580 ms
46,612 KB
testcase_14 AC 603 ms
46,568 KB
testcase_15 AC 763 ms
57,020 KB
testcase_16 AC 764 ms
57,036 KB
testcase_17 AC 767 ms
57,288 KB
testcase_18 AC 722 ms
55,212 KB
testcase_19 AC 745 ms
57,144 KB
testcase_20 AC 758 ms
57,224 KB
testcase_21 AC 523 ms
43,924 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