結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー face4face4
提出日時 2019-12-12 11:11:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 458 ms / 2,500 ms
コード長 535 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,604 KB
最終ジャッジ日時 2024-06-24 21:11:10
合計ジャッジ時間 7,464 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 40 ms
52,736 KB
testcase_05 AC 54 ms
63,872 KB
testcase_06 AC 54 ms
64,256 KB
testcase_07 AC 67 ms
69,376 KB
testcase_08 AC 79 ms
76,416 KB
testcase_09 AC 69 ms
70,656 KB
testcase_10 AC 71 ms
71,808 KB
testcase_11 AC 269 ms
76,812 KB
testcase_12 AC 266 ms
76,672 KB
testcase_13 AC 253 ms
77,100 KB
testcase_14 AC 117 ms
76,440 KB
testcase_15 AC 185 ms
77,184 KB
testcase_16 AC 265 ms
76,824 KB
testcase_17 AC 135 ms
76,856 KB
testcase_18 AC 438 ms
77,444 KB
testcase_19 AC 206 ms
76,416 KB
testcase_20 AC 112 ms
76,544 KB
testcase_21 AC 85 ms
76,288 KB
testcase_22 AC 100 ms
76,416 KB
testcase_23 AC 57 ms
65,792 KB
testcase_24 AC 293 ms
76,716 KB
testcase_25 AC 341 ms
77,120 KB
testcase_26 AC 324 ms
76,800 KB
testcase_27 AC 284 ms
77,132 KB
testcase_28 AC 458 ms
77,436 KB
testcase_29 AC 256 ms
77,184 KB
testcase_30 AC 225 ms
76,672 KB
testcase_31 AC 201 ms
76,848 KB
testcase_32 AC 292 ms
77,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
d = list(map(int, input().split()))
a.reverse()
b.reverse()
d.sort()
d.append(1<<30)
ans = 0
dp = [0]*(n+1)
for i in range(n+1):
    ndp = [0]*(n+1)
    for j in range(n+1):
        if i+1 <= n:
            ndp[j] = max(ndp[j], dp[j]+(1 if a[i+1]+b[j]>=d[dp[j]] else 0))
        if j+1 <= n:
            dp[j+1] = max(dp[j+1], dp[j]+(1 if a[i]+b[j+1]>=d[dp[j]] else 0))
    ans = max(ans, max(dp[:n+(1 if i != n else 0)]))
    dp = ndp
print(ans)
0