結果

問題 No.1097 Remainder Operation
ユーザー 37zigen37zigen
提出日時 2020-06-27 06:12:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 500 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 142,364 KB
最終ジャッジ日時 2024-07-05 08:47:45
合計ジャッジ時間 16,465 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 495 ms
49,336 KB
testcase_01 AC 494 ms
43,972 KB
testcase_02 AC 504 ms
44,220 KB
testcase_03 AC 499 ms
44,320 KB
testcase_04 AC 504 ms
44,228 KB
testcase_05 AC 514 ms
44,220 KB
testcase_06 AC 504 ms
44,100 KB
testcase_07 AC 1,665 ms
52,120 KB
testcase_08 AC 1,655 ms
51,904 KB
testcase_09 AC 1,654 ms
51,772 KB
testcase_10 AC 1,653 ms
52,408 KB
testcase_11 AC 1,630 ms
52,160 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
from sys import stdin
readline = stdin.readline

N=int(readline())
A=list(map(int,readline().split()))
Q=int(readline())
K=[int(readline()) for i in range(Q)]
M=50
dp=np.array([[-1]*M for i in range(N)],dtype="int64")
for i in range(N):
    dp[i][0]=A[i%N]
for j in range(M-1):
    for i in range(N):
        middle=(dp[i][j]+i)%N
        dp[i][j+1]=dp[i][j]+dp[middle][j]

for k in K:
    X=0
    for i in range(M):
        if (k>>i)%2==1:
            X=X+dp[X%N][i]
    print(X)
0