結果

問題 No.868 ハイパー部分和問題
ユーザー convexineqconvexineq
提出日時 2020-11-22 04:56:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 77,768 KB
最終ジャッジ日時 2024-07-23 16:15:50
合計ジャッジ時間 29,290 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,732 KB
testcase_01 AC 41 ms
59,300 KB
testcase_02 WA -
testcase_03 AC 43 ms
59,548 KB
testcase_04 AC 38 ms
53,308 KB
testcase_05 AC 39 ms
52,348 KB
testcase_06 AC 40 ms
52,440 KB
testcase_07 AC 38 ms
53,220 KB
testcase_08 AC 39 ms
53,600 KB
testcase_09 AC 38 ms
52,868 KB
testcase_10 AC 39 ms
53,140 KB
testcase_11 AC 38 ms
53,136 KB
testcase_12 AC 39 ms
52,580 KB
testcase_13 AC 38 ms
52,596 KB
testcase_14 AC 1,240 ms
77,212 KB
testcase_15 AC 1,247 ms
77,272 KB
testcase_16 AC 1,252 ms
77,336 KB
testcase_17 AC 1,245 ms
77,136 KB
testcase_18 AC 1,237 ms
77,064 KB
testcase_19 AC 947 ms
77,284 KB
testcase_20 AC 945 ms
77,472 KB
testcase_21 AC 965 ms
77,232 KB
testcase_22 AC 960 ms
77,228 KB
testcase_23 AC 831 ms
77,136 KB
testcase_24 AC 960 ms
77,020 KB
testcase_25 AC 963 ms
77,220 KB
testcase_26 AC 969 ms
77,288 KB
testcase_27 AC 975 ms
77,224 KB
testcase_28 AC 957 ms
77,568 KB
testcase_29 AC 683 ms
77,456 KB
testcase_30 AC 684 ms
77,184 KB
testcase_31 AC 688 ms
77,184 KB
testcase_32 AC 1,240 ms
77,444 KB
testcase_33 AC 1,245 ms
77,368 KB
testcase_34 WA -
testcase_35 AC 1,946 ms
77,312 KB
testcase_36 AC 1,385 ms
77,608 KB
testcase_37 AC 1,377 ms
77,148 KB
testcase_38 AC 38 ms
51,940 KB
testcase_39 AC 37 ms
52,616 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 = 1<<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