結果

問題 No.1097 Remainder Operation
ユーザー stngstng
提出日時 2022-06-16 22:09:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 85,008 KB
最終ジャッジ日時 2024-10-07 05:40:33
合計ジャッジ時間 4,419 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,352 KB
testcase_01 AC 40 ms
52,316 KB
testcase_02 AC 40 ms
52,820 KB
testcase_03 AC 44 ms
52,400 KB
testcase_04 AC 40 ms
52,744 KB
testcase_05 AC 39 ms
54,368 KB
testcase_06 AC 39 ms
53,180 KB
testcase_07 AC 80 ms
76,976 KB
testcase_08 AC 82 ms
76,724 KB
testcase_09 AC 80 ms
76,860 KB
testcase_10 AC 79 ms
77,156 KB
testcase_11 AC 80 ms
76,660 KB
testcase_12 AC 138 ms
84,540 KB
testcase_13 AC 138 ms
84,852 KB
testcase_14 AC 140 ms
84,960 KB
testcase_15 AC 141 ms
84,552 KB
testcase_16 AC 140 ms
84,700 KB
testcase_17 AC 136 ms
85,008 KB
testcase_18 AC 128 ms
83,468 KB
testcase_19 AC 136 ms
83,392 KB
testcase_20 AC 136 ms
83,528 KB
testcase_21 AC 137 ms
83,480 KB
testcase_22 AC 137 ms
83,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(i) for i in input().split()]
q = int(input())
k = [int(input())-1 for i in range(q)]

dp = [-1]*(n)
val = [-1]*(n+1)
#dp[0] = 0
x = 0

for i in range(n+1):
    tmp = x%n
    x += a[tmp]
    val[i] = x
    #print(tmp,tmp,tmp)
    if dp[tmp] != -1:
        loop = i - dp[tmp]
        idx = dp[tmp]
        break
    dp[tmp] = i
    #print(tmp,i)
    
#print(loop,idx)
#print(dp,val)

lval = val[idx+loop] - val[idx]
#print(lval,"lval")

for i in range(q):
    if k[i] <= n and val[k[i]] != -1:
        print(val[k[i]])
    else:
        cnt = (k[i]-idx)//loop
        #print(k[i]-lval*cnt-idx)
        ans = lval*cnt+val[k[i]-loop*cnt]
        print(ans)
        
0