結果

問題 No.868 ハイパー部分和問題
ユーザー vwxyzvwxyz
提出日時 2024-04-15 11:15:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,543 ms / 7,000 ms
コード長 547 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 78,620 KB
最終ジャッジ日時 2024-10-05 06:24:08
合計ジャッジ時間 41,484 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,664 KB
testcase_01 AC 39 ms
60,004 KB
testcase_02 AC 40 ms
59,612 KB
testcase_03 AC 40 ms
58,552 KB
testcase_04 AC 38 ms
52,012 KB
testcase_05 AC 37 ms
52,744 KB
testcase_06 AC 37 ms
53,644 KB
testcase_07 AC 36 ms
53,104 KB
testcase_08 AC 36 ms
53,288 KB
testcase_09 AC 37 ms
53,844 KB
testcase_10 AC 38 ms
52,276 KB
testcase_11 AC 36 ms
52,756 KB
testcase_12 AC 37 ms
52,076 KB
testcase_13 AC 36 ms
52,564 KB
testcase_14 AC 1,915 ms
77,172 KB
testcase_15 AC 1,888 ms
77,144 KB
testcase_16 AC 1,907 ms
76,944 KB
testcase_17 AC 1,966 ms
77,212 KB
testcase_18 AC 2,006 ms
76,724 KB
testcase_19 AC 1,318 ms
76,824 KB
testcase_20 AC 1,341 ms
76,772 KB
testcase_21 AC 1,443 ms
77,224 KB
testcase_22 AC 1,352 ms
77,076 KB
testcase_23 AC 1,397 ms
76,940 KB
testcase_24 AC 1,357 ms
77,020 KB
testcase_25 AC 1,461 ms
77,144 KB
testcase_26 AC 1,357 ms
77,172 KB
testcase_27 AC 1,289 ms
76,816 KB
testcase_28 AC 1,430 ms
77,680 KB
testcase_29 AC 971 ms
76,864 KB
testcase_30 AC 971 ms
76,816 KB
testcase_31 AC 972 ms
76,932 KB
testcase_32 AC 1,894 ms
76,792 KB
testcase_33 AC 1,941 ms
77,176 KB
testcase_34 AC 2,543 ms
78,620 KB
testcase_35 AC 2,425 ms
76,960 KB
testcase_36 AC 2,180 ms
76,876 KB
testcase_37 AC 2,082 ms
76,868 KB
testcase_38 AC 34 ms
52,072 KB
testcase_39 AC 33 ms
52,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
mod=(1<<61)-1
P=[0]*(K+1)
P[0]=1
for a in A:
    if a:
        for k in range(K,a-1,-1):
            P[k]+=P[k-a]
            P[k]%=mod
Q=int(input())
for q in range(Q):
    x,v=map(int,input().split())
    x-=1
    if A[x]:
        for k in range(A[x],K+1):
            P[k]-=P[k-A[x]]
            P[k]%=mod
    A[x]=v
    if A[x]:
        for k in range(K,A[x]-1,-1):
            P[k]+=P[k-A[x]]
            P[k]%=mod
    if P[K]:
        ans=1
    else:
        ans=0
    print(ans)
0