結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
66,432 KB
testcase_01 AC 35 ms
52,480 KB
testcase_02 AC 45 ms
62,592 KB
testcase_03 AC 46 ms
63,488 KB
testcase_04 AC 41 ms
59,884 KB
testcase_05 AC 43 ms
61,312 KB
testcase_06 AC 38 ms
58,624 KB
testcase_07 AC 46 ms
65,152 KB
testcase_08 AC 57 ms
70,528 KB
testcase_09 AC 777 ms
248,992 KB
testcase_10 AC 58 ms
77,312 KB
testcase_11 AC 153 ms
113,272 KB
testcase_12 AC 223 ms
136,116 KB
testcase_13 AC 107 ms
92,544 KB
testcase_14 AC 61 ms
76,928 KB
testcase_15 AC 40 ms
59,136 KB
testcase_16 AC 44 ms
60,928 KB
testcase_17 AC 47 ms
65,280 KB
testcase_18 AC 43 ms
61,792 KB
testcase_19 AC 35 ms
51,968 KB
testcase_20 AC 40 ms
59,136 KB
testcase_21 AC 47 ms
64,000 KB
testcase_22 AC 289 ms
160,308 KB
testcase_23 AC 83 ms
92,544 KB
testcase_24 AC 42 ms
63,232 KB
testcase_25 AC 40 ms
60,032 KB
testcase_26 AC 35 ms
52,352 KB
testcase_27 AC 685 ms
257,732 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