結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー H3PO4H3PO4
提出日時 2021-07-18 09:35:02
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 682 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 366,628 KB
最終ジャッジ日時 2024-07-08 02:31:46
合計ジャッジ時間 28,614 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,752 KB
testcase_01 AC 36 ms
52,348 KB
testcase_02 AC 34 ms
53,336 KB
testcase_03 AC 32 ms
51,880 KB
testcase_04 AC 35 ms
59,516 KB
testcase_05 AC 43 ms
63,196 KB
testcase_06 AC 42 ms
61,232 KB
testcase_07 AC 39 ms
60,604 KB
testcase_08 AC 61 ms
74,044 KB
testcase_09 AC 46 ms
66,672 KB
testcase_10 AC 44 ms
65,992 KB
testcase_11 AC 1,471 ms
317,784 KB
testcase_12 AC 1,192 ms
330,708 KB
testcase_13 AC 1,076 ms
317,924 KB
testcase_14 AC 155 ms
98,284 KB
testcase_15 AC 1,085 ms
308,944 KB
testcase_16 AC 2,234 ms
332,824 KB
testcase_17 AC 121 ms
94,948 KB
testcase_18 AC 1,438 ms
366,628 KB
testcase_19 AC 1,487 ms
309,552 KB
testcase_20 AC 428 ms
138,336 KB
testcase_21 AC 100 ms
84,740 KB
testcase_22 AC 154 ms
105,668 KB
testcase_23 AC 47 ms
70,448 KB
testcase_24 AC 749 ms
317,784 KB
testcase_25 AC 2,025 ms
358,944 KB
testcase_26 AC 1,875 ms
360,032 KB
testcase_27 TLE -
testcase_28 AC 1,373 ms
360,044 KB
testcase_29 AC 2,016 ms
346,348 KB
testcase_30 AC 1,563 ms
356,512 KB
testcase_31 AC 1,315 ms
355,740 KB
testcase_32 AC 2,288 ms
318,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = tuple(map(int, input().split()))
B = tuple(map(int, input().split()))
D = sorted(map(int, input().split()))


def isOK(x):
    dp = [[False] * (N + 1) for _ in range(N + 1)]
    dp[0][0] = True
    for a in range(N + 1):
        for b in range(x - a + 1):
            if a == b == 0:
                continue
            if A[a] + B[b] >= D[x - a - b]:
                if (a and dp[a - 1][b]) or (b and dp[a][b - 1]):
                    dp[a][b] = True
                    if a + b == x:
                        return True
    return False


l, r = 0, N + 1
while r - l > 1:
    m = (r + l) // 2
    if isOK(m):
        l = m
    else:
        r = m
print(l)
0