結果

問題 No.1307 Rotate and Accumulate
ユーザー trineutrontrineutron
提出日時 2020-12-04 00:47:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 815 ms / 5,000 ms
コード長 209 bytes
コンパイル時間 632 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 59,356 KB
最終ジャッジ日時 2024-09-14 10:34:53
合計ジャッジ時間 16,491 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
44,320 KB
testcase_01 AC 514 ms
44,056 KB
testcase_02 AC 527 ms
43,796 KB
testcase_03 AC 514 ms
44,052 KB
testcase_04 AC 524 ms
44,052 KB
testcase_05 AC 521 ms
44,176 KB
testcase_06 AC 518 ms
44,440 KB
testcase_07 AC 520 ms
44,056 KB
testcase_08 AC 697 ms
58,572 KB
testcase_09 AC 712 ms
59,356 KB
testcase_10 AC 724 ms
50,500 KB
testcase_11 AC 626 ms
48,536 KB
testcase_12 AC 729 ms
54,220 KB
testcase_13 AC 591 ms
46,360 KB
testcase_14 AC 614 ms
48,172 KB
testcase_15 AC 804 ms
54,188 KB
testcase_16 AC 815 ms
53,660 KB
testcase_17 AC 805 ms
53,896 KB
testcase_18 AC 772 ms
51,880 KB
testcase_19 AC 806 ms
54,192 KB
testcase_20 AC 796 ms
53,964 KB
testcase_21 AC 521 ms
44,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as p
n,q=map(int,input().split())
a=p.array(list(map(int,input().split())))
b=p.zeros(n)
for i in map(int,input().split()):b[-i%n]+=1
print(*(p.fft.ifft(p.fft.fft(a)*p.fft.fft(b))+.5).astype(int))
0