結果

問題 No.1307 Rotate and Accumulate
ユーザー trineutrontrineutron
提出日時 2020-12-04 01:42:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 943 ms / 5,000 ms
コード長 146 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 60,824 KB
最終ジャッジ日時 2024-09-14 12:00:33
合計ジャッジ時間 17,716 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 532 ms
44,168 KB
testcase_01 AC 529 ms
43,952 KB
testcase_02 AC 521 ms
43,652 KB
testcase_03 AC 536 ms
44,168 KB
testcase_04 AC 530 ms
44,164 KB
testcase_05 AC 537 ms
44,168 KB
testcase_06 AC 523 ms
43,788 KB
testcase_07 AC 517 ms
43,636 KB
testcase_08 AC 813 ms
60,124 KB
testcase_09 AC 833 ms
60,824 KB
testcase_10 AC 761 ms
54,152 KB
testcase_11 AC 737 ms
50,924 KB
testcase_12 AC 785 ms
54,684 KB
testcase_13 AC 591 ms
46,320 KB
testcase_14 AC 632 ms
46,580 KB
testcase_15 AC 943 ms
59,768 KB
testcase_16 AC 943 ms
59,664 KB
testcase_17 AC 934 ms
59,844 KB
testcase_18 AC 900 ms
54,504 KB
testcase_19 AC 928 ms
59,676 KB
testcase_20 AC 932 ms
60,320 KB
testcase_21 AC 526 ms
43,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy import fft as F
I=input
I()
a=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