結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
44,048 KB
testcase_01 AC 520 ms
44,304 KB
testcase_02 AC 523 ms
44,064 KB
testcase_03 AC 530 ms
43,848 KB
testcase_04 AC 533 ms
44,052 KB
testcase_05 AC 524 ms
44,436 KB
testcase_06 AC 526 ms
44,056 KB
testcase_07 AC 539 ms
43,928 KB
testcase_08 AC 699 ms
58,944 KB
testcase_09 AC 710 ms
59,760 KB
testcase_10 AC 716 ms
51,648 KB
testcase_11 AC 627 ms
49,036 KB
testcase_12 AC 783 ms
53,704 KB
testcase_13 AC 588 ms
45,716 KB
testcase_14 AC 624 ms
45,456 KB
testcase_15 AC 810 ms
55,356 KB
testcase_16 AC 825 ms
55,456 KB
testcase_17 AC 809 ms
55,100 KB
testcase_18 AC 774 ms
51,752 KB
testcase_19 AC 806 ms
55,232 KB
testcase_20 AC 806 ms
55,588 KB
testcase_21 AC 543 ms
44,052 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[(n-i)%n]+=1
print(*p.array(p.round(p.real(p.fft.ifft(p.fft.fft(a)*p.fft.fft(b)))),dtype=int))
0