結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 518 ms
43,924 KB
testcase_01 AC 519 ms
43,928 KB
testcase_02 AC 515 ms
43,928 KB
testcase_03 AC 517 ms
43,928 KB
testcase_04 AC 513 ms
44,308 KB
testcase_05 AC 517 ms
44,180 KB
testcase_06 AC 521 ms
43,672 KB
testcase_07 AC 519 ms
44,192 KB
testcase_08 AC 696 ms
58,552 KB
testcase_09 AC 707 ms
59,304 KB
testcase_10 AC 719 ms
51,732 KB
testcase_11 AC 631 ms
49,212 KB
testcase_12 AC 728 ms
53,576 KB
testcase_13 AC 593 ms
45,716 KB
testcase_14 AC 620 ms
46,108 KB
testcase_15 AC 807 ms
55,064 KB
testcase_16 AC 798 ms
55,192 KB
testcase_17 AC 804 ms
55,360 KB
testcase_18 AC 768 ms
51,632 KB
testcase_19 AC 796 ms
55,712 KB
testcase_20 AC 795 ms
55,456 KB
testcase_21 AC 516 ms
44,304 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.array(p.round(p.real(p.fft.ifft(p.fft.fft(a)*p.fft.fft(b)))),dtype=int))
0