結果

問題 No.1307 Rotate and Accumulate
ユーザー trineutrontrineutron
提出日時 2020-12-04 00:52:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 840 ms / 5,000 ms
コード長 206 bytes
コンパイル時間 562 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 58,120 KB
最終ジャッジ日時 2024-09-14 10:43:54
合計ジャッジ時間 17,084 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 538 ms
43,804 KB
testcase_01 AC 533 ms
43,936 KB
testcase_02 AC 530 ms
43,424 KB
testcase_03 AC 524 ms
44,192 KB
testcase_04 AC 524 ms
43,672 KB
testcase_05 AC 525 ms
43,396 KB
testcase_06 AC 530 ms
43,928 KB
testcase_07 AC 525 ms
43,676 KB
testcase_08 AC 701 ms
57,372 KB
testcase_09 AC 719 ms
58,120 KB
testcase_10 AC 724 ms
50,756 KB
testcase_11 AC 639 ms
47,688 KB
testcase_12 AC 743 ms
52,848 KB
testcase_13 AC 608 ms
45,984 KB
testcase_14 AC 639 ms
46,540 KB
testcase_15 AC 831 ms
54,848 KB
testcase_16 AC 826 ms
55,376 KB
testcase_17 AC 840 ms
55,332 KB
testcase_18 AC 785 ms
51,144 KB
testcase_19 AC 828 ms
54,852 KB
testcase_20 AC 810 ms
54,952 KB
testcase_21 AC 530 ms
44,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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