結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー りあんりあん
提出日時 2019-12-06 06:43:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 734 ms / 2,500 ms
コード長 441 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 77,348 KB
最終ジャッジ日時 2024-06-24 02:38:13
合計ジャッジ時間 8,923 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,924 KB
testcase_01 AC 38 ms
54,156 KB
testcase_02 AC 39 ms
52,892 KB
testcase_03 AC 38 ms
52,808 KB
testcase_04 AC 42 ms
59,440 KB
testcase_05 AC 52 ms
62,972 KB
testcase_06 AC 49 ms
61,464 KB
testcase_07 AC 59 ms
67,712 KB
testcase_08 AC 72 ms
75,064 KB
testcase_09 AC 62 ms
68,832 KB
testcase_10 AC 60 ms
68,216 KB
testcase_11 AC 539 ms
76,796 KB
testcase_12 AC 521 ms
77,024 KB
testcase_13 AC 495 ms
77,348 KB
testcase_14 AC 138 ms
76,632 KB
testcase_15 AC 244 ms
76,596 KB
testcase_16 AC 413 ms
76,476 KB
testcase_17 AC 99 ms
76,060 KB
testcase_18 AC 549 ms
76,680 KB
testcase_19 AC 224 ms
76,468 KB
testcase_20 AC 109 ms
76,324 KB
testcase_21 AC 70 ms
74,916 KB
testcase_22 AC 80 ms
76,392 KB
testcase_23 AC 44 ms
59,908 KB
testcase_24 AC 309 ms
76,720 KB
testcase_25 AC 734 ms
76,996 KB
testcase_26 AC 640 ms
77,040 KB
testcase_27 AC 424 ms
77,152 KB
testcase_28 AC 500 ms
76,472 KB
testcase_29 AC 286 ms
76,816 KB
testcase_30 AC 150 ms
76,448 KB
testcase_31 AC 80 ms
76,172 KB
testcase_32 AC 482 ms
76,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
d = list(map(int, input().split()))

d.sort()

ok = 0
ng = n + 1
while ng - ok > 1:
    m = (ok + ng) // 2
    f = [ True ]
    for i in range(1, m + 1):
        f = [ a[j] + b[i - j] >= d[m - i] and (j < i and f[j] or j > 0 and f[j - 1]) for j in range(i + 1) ]

    if any(f):
        ok = m
    else:
        ng = m

print(ok)
0