結果

問題 No.1097 Remainder Operation
ユーザー convexineqconvexineq
提出日時 2020-06-26 22:05:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 436 ms / 2,000 ms
コード長 712 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 170,316 KB
最終ジャッジ日時 2024-07-04 21:16:02
合計ジャッジ時間 6,265 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,320 KB
testcase_01 AC 38 ms
53,136 KB
testcase_02 AC 46 ms
62,348 KB
testcase_03 AC 46 ms
60,964 KB
testcase_04 AC 47 ms
60,440 KB
testcase_05 AC 45 ms
60,500 KB
testcase_06 AC 47 ms
60,376 KB
testcase_07 AC 81 ms
82,828 KB
testcase_08 AC 84 ms
82,984 KB
testcase_09 AC 81 ms
82,824 KB
testcase_10 AC 82 ms
82,768 KB
testcase_11 AC 82 ms
82,740 KB
testcase_12 AC 316 ms
168,180 KB
testcase_13 AC 334 ms
168,152 KB
testcase_14 AC 354 ms
168,244 KB
testcase_15 AC 359 ms
168,064 KB
testcase_16 AC 331 ms
168,008 KB
testcase_17 AC 252 ms
167,860 KB
testcase_18 AC 255 ms
170,316 KB
testcase_19 AC 287 ms
169,788 KB
testcase_20 AC 286 ms
170,040 KB
testcase_21 AC 426 ms
169,840 KB
testcase_22 AC 436 ms
170,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import sys
read = sys.stdin.read
readline = sys.stdin.readline

n, = map(int,readline().split())
*a, = map(int,readline().split())


dist = [a[:]]
nxt = [[(i+a[i])%n for i in range(n)]]

#print(nxt)
#print(dist)

for _ in range(40):
    res = [dist[-1][nxt[-1][i]] + dist[-1][i] for i in range(n)]
    dist.append(res)
    res = [nxt[-1][nxt[-1][i]] for i in range(n)]
    nxt.append(res)

#print(nxt[:2])
#print(dist[:2])

q,*k = map(int,read().split())
for ki in k:
    d = 0
    x = 0
    i = 0
    for m in range(40,-1,-1):
        if i + (1<<m) <= ki:
            d += dist[m][x]
            x = nxt[m][x]
            i += 1<<m
    
    print(d)            
    
    





0