結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー seica_at_seseica_at_se
提出日時 2019-12-12 00:54:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 546 ms / 2,500 ms
コード長 596 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 147,500 KB
最終ジャッジ日時 2024-06-24 08:13:00
合計ジャッジ時間 10,731 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
134,744 KB
testcase_01 AC 159 ms
135,096 KB
testcase_02 AC 161 ms
134,796 KB
testcase_03 AC 156 ms
134,508 KB
testcase_04 AC 136 ms
134,916 KB
testcase_05 AC 143 ms
134,800 KB
testcase_06 AC 141 ms
134,732 KB
testcase_07 AC 149 ms
134,848 KB
testcase_08 AC 154 ms
134,736 KB
testcase_09 AC 159 ms
135,340 KB
testcase_10 AC 150 ms
134,924 KB
testcase_11 AC 380 ms
146,908 KB
testcase_12 AC 395 ms
147,304 KB
testcase_13 AC 335 ms
147,212 KB
testcase_14 AC 195 ms
146,792 KB
testcase_15 AC 280 ms
147,096 KB
testcase_16 AC 368 ms
146,976 KB
testcase_17 AC 214 ms
147,088 KB
testcase_18 AC 531 ms
147,236 KB
testcase_19 AC 339 ms
147,372 KB
testcase_20 AC 230 ms
147,400 KB
testcase_21 AC 194 ms
134,264 KB
testcase_22 AC 222 ms
146,664 KB
testcase_23 AC 148 ms
134,660 KB
testcase_24 AC 347 ms
147,104 KB
testcase_25 AC 432 ms
146,960 KB
testcase_26 AC 470 ms
147,272 KB
testcase_27 AC 393 ms
146,964 KB
testcase_28 AC 546 ms
147,500 KB
testcase_29 AC 378 ms
146,900 KB
testcase_30 AC 354 ms
147,204 KB
testcase_31 AC 338 ms
146,968 KB
testcase_32 AC 444 ms
147,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[0 for i in range(3003)] for j in range(3003)]

for i in range(n+1):
    for j in range(n+1):
        #print(i, j)
        if i > 0:
            dp[i][j] = max(dp[i][j], dp[i-1][j])

        if j > 0:
            dp[i][j] = max(dp[i][j], dp[i][j-1])

        if dp[i][j] == n:
            continue
        if i == n and j == n:
            continue
        if a[i] + b[j] >= d[dp[i][j]]:
            dp[i][j] += 1

print(dp[n][n])
0