結果

問題 No.868 ハイパー部分和問題
ユーザー mousemoodmousemood
提出日時 2019-09-16 23:53:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 351 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 45,984 KB
最終ジャッジ日時 2024-07-07 02:36:52
合計ジャッジ時間 16,571 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 461 ms
44,584 KB
testcase_01 AC 461 ms
44,456 KB
testcase_02 AC 763 ms
45,984 KB
testcase_03 AC 438 ms
44,120 KB
testcase_04 AC 432 ms
44,456 KB
testcase_05 AC 436 ms
44,076 KB
testcase_06 AC 433 ms
44,072 KB
testcase_07 AC 436 ms
44,460 KB
testcase_08 AC 449 ms
44,344 KB
testcase_09 AC 432 ms
44,332 KB
testcase_10 AC 432 ms
44,332 KB
testcase_11 AC 431 ms
44,336 KB
testcase_12 AC 435 ms
44,072 KB
testcase_13 AC 431 ms
44,088 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

n, k = map(int, input().split())
a = list(map(int, input().split()))
q = int(input())

def func(arr, key):
    l = np.array([])

    for num in arr:
        l = np.unique(np.concatenate([l, [num], l + num]))

    return int(key in l)


for i in range(q):
    x, v = map(int, input().split())
    a[x - 1] = v
    print(func(a, k))
0