結果

問題 No.1307 Rotate and Accumulate
ユーザー trineutrontrineutron
提出日時 2020-12-04 00:55:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 812 ms / 5,000 ms
コード長 197 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 62,900 KB
最終ジャッジ日時 2024-09-14 10:46:52
合計ジャッジ時間 16,413 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 514 ms
44,060 KB
testcase_01 AC 515 ms
43,940 KB
testcase_02 AC 520 ms
43,928 KB
testcase_03 AC 516 ms
44,196 KB
testcase_04 AC 522 ms
44,316 KB
testcase_05 AC 520 ms
44,316 KB
testcase_06 AC 519 ms
44,456 KB
testcase_07 AC 517 ms
43,940 KB
testcase_08 AC 692 ms
61,860 KB
testcase_09 AC 708 ms
62,900 KB
testcase_10 AC 725 ms
53,456 KB
testcase_11 AC 632 ms
50,832 KB
testcase_12 AC 724 ms
55,708 KB
testcase_13 AC 591 ms
46,368 KB
testcase_14 AC 615 ms
48,168 KB
testcase_15 AC 806 ms
58,456 KB
testcase_16 AC 812 ms
58,324 KB
testcase_17 AC 810 ms
58,460 KB
testcase_18 AC 772 ms
55,136 KB
testcase_19 AC 806 ms
58,856 KB
testcase_20 AC 787 ms
58,328 KB
testcase_21 AC 519 ms
44,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as p
n=int(input().split()[0])
a=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