結果

問題 No.393 2本の竹
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-14 16:05:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 746 ms / 1,000 ms
コード長 601 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 257,988 KB
最終ジャッジ日時 2024-05-03 08:30:05
合計ジャッジ時間 4,220 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
66,944 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 47 ms
62,208 KB
testcase_03 AC 48 ms
64,456 KB
testcase_04 AC 43 ms
59,392 KB
testcase_05 AC 45 ms
61,696 KB
testcase_06 AC 40 ms
59,136 KB
testcase_07 AC 50 ms
64,768 KB
testcase_08 AC 55 ms
70,656 KB
testcase_09 AC 746 ms
248,396 KB
testcase_10 AC 54 ms
77,056 KB
testcase_11 AC 147 ms
113,576 KB
testcase_12 AC 222 ms
136,304 KB
testcase_13 AC 107 ms
93,312 KB
testcase_14 AC 63 ms
77,440 KB
testcase_15 AC 40 ms
58,880 KB
testcase_16 AC 42 ms
61,568 KB
testcase_17 AC 47 ms
65,280 KB
testcase_18 AC 42 ms
61,952 KB
testcase_19 AC 35 ms
52,480 KB
testcase_20 AC 39 ms
59,136 KB
testcase_21 AC 46 ms
64,896 KB
testcase_22 AC 286 ms
160,256 KB
testcase_23 AC 82 ms
92,416 KB
testcase_24 AC 45 ms
62,720 KB
testcase_25 AC 40 ms
59,904 KB
testcase_26 AC 33 ms
52,352 KB
testcase_27 AC 667 ms
257,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
b = 10 ** 9 + 7


def test():
    x, y = map(int, input().split())
    m = int(input())
    A = sorted(map(int, input().split()))

    dp = {x * b + y}
    for i, a in enumerate(A):
        ndp = set()
        for xy in dp:
            x, y = divmod(xy, b)
            if x - a >= 0:
                ndp.add((x - a) * b + y)
            if y - a >= 0:
                ndp.add(x * b + y - a)
        if not ndp:
            return i
        dp = ndp
    return m


d = int(input())
print(*[test() for _ in range(d)], sep="\n")
0