結果
問題 | No.949 飲酒プログラミングコンテスト |
ユーザー | ttr |
提出日時 | 2020-01-31 20:01:30 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 743 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 82,364 KB |
実行使用メモリ | 218,688 KB |
最終ジャッジ日時 | 2024-09-17 06:57:33 |
合計ジャッジ時間 | 23,456 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
52,096 KB |
testcase_01 | AC | 41 ms
52,480 KB |
testcase_02 | AC | 41 ms
52,224 KB |
testcase_03 | AC | 41 ms
52,352 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 747 ms
145,792 KB |
testcase_16 | AC | 1,302 ms
203,272 KB |
testcase_17 | AC | 219 ms
87,936 KB |
testcase_18 | AC | 1,375 ms
204,028 KB |
testcase_19 | AC | 1,190 ms
177,416 KB |
testcase_20 | AC | 318 ms
97,536 KB |
testcase_21 | AC | 153 ms
84,864 KB |
testcase_22 | AC | 286 ms
92,672 KB |
testcase_23 | AC | 79 ms
76,928 KB |
testcase_24 | AC | 770 ms
139,520 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 1,409 ms
211,840 KB |
testcase_28 | AC | 1,396 ms
205,412 KB |
testcase_29 | WA | - |
testcase_30 | AC | 1,589 ms
217,984 KB |
testcase_31 | AC | 973 ms
215,552 KB |
testcase_32 | WA | - |
ソースコード
import bisect N = int(input()) A = [int(a) for a in input().split()] B = [int(b) for b in input().split()] D = [int(d) for d in input().split()] D.sort() L = [[N]*(N+1) for _ in range(N+1)] for i in range(N+1): for j in range(N+1): if i+j > N: continue c = A[i] + B[j] L[i][j] = bisect.bisect_right(D, c) - 1 dp = [[N]*(N+1) for _ in range(N+1)] for i in range(N): for j in range(N): if i+j >= N: continue dp[i+1][j] = min(L[i+1][j], dp[i][j]-1, dp[i+1][j]) dp[i][j+1] = min(L[i][j+1], dp[i][j]-1, dp[i][j+1]) ans = 0 for i in range(N+1): for j in range(N+1): if dp[i][j] < 0 or i+j > N: continue ans = max(ans, i+j) print(ans)