結果

問題 No.1307 Rotate and Accumulate
ユーザー shotoyooshotoyoo
提出日時 2020-12-04 00:28:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 467 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 51,704 KB
最終ジャッジ日時 2024-09-14 09:59:06
合計ジャッジ時間 12,225 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
44,460 KB
testcase_01 AC 537 ms
44,076 KB
testcase_02 AC 530 ms
44,584 KB
testcase_03 AC 525 ms
44,324 KB
testcase_04 AC 531 ms
44,200 KB
testcase_05 AC 532 ms
44,076 KB
testcase_06 AC 536 ms
44,324 KB
testcase_07 AC 536 ms
44,072 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")

import numpy as np
n,q = list(map(int, input().split()))
a = np.array(list(map(int, input().split())), dtype=np.int64)
# r = np.array(list(map(int, input().split())), dtype=np.int64)
r = list(map(int, input().split()))
b = np.zeros(n, dtype=np.int64)
for rr in r:
    b += np.roll(a,-rr)
write(" ".join(map(str, b.tolist())))
0