結果

問題 No.1307 Rotate and Accumulate
ユーザー tktk_snsntktk_snsn
提出日時 2021-03-21 09:37:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 815 ms / 5,000 ms
コード長 421 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 94,288 KB
最終ジャッジ日時 2024-11-22 00:21:30
合計ジャッジ時間 18,384 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 511 ms
44,344 KB
testcase_01 AC 514 ms
43,944 KB
testcase_02 AC 518 ms
44,344 KB
testcase_03 AC 518 ms
43,844 KB
testcase_04 AC 514 ms
44,104 KB
testcase_05 AC 521 ms
44,088 KB
testcase_06 AC 518 ms
44,480 KB
testcase_07 AC 511 ms
43,828 KB
testcase_08 AC 651 ms
66,076 KB
testcase_09 AC 650 ms
68,040 KB
testcase_10 AC 666 ms
70,492 KB
testcase_11 AC 623 ms
65,040 KB
testcase_12 AC 649 ms
70,204 KB
testcase_13 AC 555 ms
48,704 KB
testcase_14 AC 586 ms
56,072 KB
testcase_15 AC 758 ms
92,952 KB
testcase_16 AC 790 ms
94,288 KB
testcase_17 AC 797 ms
93,148 KB
testcase_18 AC 775 ms
85,344 KB
testcase_19 AC 787 ms
92,996 KB
testcase_20 AC 815 ms
93,380 KB
testcase_21 AC 527 ms
44,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N, M = map(int, input().split())
A = list(map(int, input().split()))
R = list(map(int, input().split()))

cnt = [0] * N
for r in R:
    cnt[r - 1] += 1
cnt *= 2
cnt.reverse()

sz = len(A) + len(cnt) - 1
fft_len = 1 << (sz - 1).bit_length()
ca = np.fft.rfft(A, fft_len)
cc = np.fft.rfft(cnt, fft_len)
X = np.fft.irfft(ca * cc, fft_len)[:sz]
X = (X.real + 0.1).astype(np.int64)

print(*X[N:N+N].tolist())
0