結果

問題 No.868 ハイパー部分和問題
ユーザー convexineqconvexineq
提出日時 2020-11-22 05:57:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,638 ms / 7,000 ms
コード長 428 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 77,748 KB
最終ジャッジ日時 2024-07-23 16:17:13
合計ジャッジ時間 38,266 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,496 KB
testcase_01 AC 43 ms
57,984 KB
testcase_02 AC 43 ms
58,240 KB
testcase_03 AC 47 ms
58,624 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 37 ms
52,608 KB
testcase_06 AC 39 ms
52,736 KB
testcase_07 AC 39 ms
52,736 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 39 ms
52,352 KB
testcase_10 AC 39 ms
51,712 KB
testcase_11 AC 38 ms
52,608 KB
testcase_12 AC 40 ms
52,480 KB
testcase_13 AC 38 ms
52,352 KB
testcase_14 AC 1,682 ms
77,440 KB
testcase_15 AC 1,671 ms
77,524 KB
testcase_16 AC 1,692 ms
77,568 KB
testcase_17 AC 1,648 ms
77,440 KB
testcase_18 AC 1,654 ms
77,356 KB
testcase_19 AC 1,206 ms
76,800 KB
testcase_20 AC 1,212 ms
77,056 KB
testcase_21 AC 1,225 ms
77,056 KB
testcase_22 AC 1,221 ms
77,044 KB
testcase_23 AC 1,227 ms
77,288 KB
testcase_24 AC 1,226 ms
77,184 KB
testcase_25 AC 1,229 ms
77,360 KB
testcase_26 AC 1,220 ms
77,268 KB
testcase_27 AC 1,212 ms
77,184 KB
testcase_28 AC 1,217 ms
76,928 KB
testcase_29 AC 887 ms
77,464 KB
testcase_30 AC 885 ms
77,184 KB
testcase_31 AC 898 ms
77,312 KB
testcase_32 AC 1,671 ms
77,440 KB
testcase_33 AC 1,679 ms
77,552 KB
testcase_34 AC 2,565 ms
77,288 KB
testcase_35 AC 2,638 ms
77,748 KB
testcase_36 AC 1,857 ms
77,288 KB
testcase_37 AC 1,853 ms
77,152 KB
testcase_38 AC 40 ms
52,224 KB
testcase_39 AC 40 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def mul(c,m):
    for i in range(m,c-1,-1): dp[i] = (dp[i]+dp[i-c])%MOD
def div(c,m):
    for i in range(m-c+1): dp[i+c] = (dp[i+c]-dp[i])%MOD
n,k = map(int,input().split())
*a, = map(int,input().split())
MOD = 2**59+1
dp = [0]*(k+1)
dp[0] = 1
for i in a: mul(i,k)
q = int(input())
for _ in range(q):
    x,v = map(int,input().split())
    if a[x-1]: div(a[x-1],k)
    if v: mul(v,k)
    a[x-1] = v
    print(1 if dp[-1] else 0)
0