結果

問題 No.1307 Rotate and Accumulate
ユーザー 👑 testestesttestestest
提出日時 2020-12-04 01:18:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 749 ms / 5,000 ms
コード長 174 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 62,748 KB
最終ジャッジ日時 2024-09-14 11:20:46
合計ジャッジ時間 16,513 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 512 ms
43,788 KB
testcase_01 AC 518 ms
44,172 KB
testcase_02 AC 516 ms
44,304 KB
testcase_03 AC 519 ms
44,064 KB
testcase_04 AC 517 ms
44,116 KB
testcase_05 AC 517 ms
44,172 KB
testcase_06 AC 518 ms
43,796 KB
testcase_07 AC 523 ms
44,308 KB
testcase_08 AC 688 ms
61,072 KB
testcase_09 AC 688 ms
62,748 KB
testcase_10 AC 665 ms
51,604 KB
testcase_11 AC 623 ms
51,192 KB
testcase_12 AC 678 ms
54,676 KB
testcase_13 AC 564 ms
46,460 KB
testcase_14 AC 592 ms
47,280 KB
testcase_15 AC 747 ms
57,284 KB
testcase_16 AC 742 ms
57,424 KB
testcase_17 AC 743 ms
57,300 KB
testcase_18 AC 719 ms
55,616 KB
testcase_19 AC 740 ms
57,296 KB
testcase_20 AC 749 ms
57,176 KB
testcase_21 AC 523 ms
44,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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