結果
問題 | No.949 飲酒プログラミングコンテスト |
ユーザー | Leonardone |
提出日時 | 2019-12-12 21:48:24 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 650 bytes |
コンパイル時間 | 93 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 210,484 KB |
最終ジャッジ日時 | 2024-06-25 17:41:36 |
合計ジャッジ時間 | 4,664 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
16,128 KB |
testcase_01 | AC | 26 ms
10,752 KB |
testcase_02 | AC | 27 ms
10,752 KB |
testcase_03 | AC | 29 ms
10,880 KB |
testcase_04 | AC | 29 ms
11,008 KB |
testcase_05 | AC | 29 ms
11,008 KB |
testcase_06 | AC | 27 ms
10,880 KB |
testcase_07 | AC | 37 ms
11,264 KB |
testcase_08 | AC | 87 ms
13,056 KB |
testcase_09 | AC | 42 ms
11,392 KB |
testcase_10 | AC | 54 ms
11,904 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
n = int(input()) a = [int(i) for i in input().split()] b = [int(i) for i in input().split()] d = [int(i) for i in input().split()] d.sort() n1 = n+1 es = [[] for i in range(n1)] for i in range(n1): for j in range(n1): p = i + j if p <= n: es[p].append(i*n1+j) m = [0] * (n1*n1) for p in range(n,0,-1): for e in es[p]: i = e // n1 j = e % n1 s = m[e] r = a[i] + b[j] if s < n and d[s] <= r: s += 1 u = e - 1 if u >= 0 and s > m[u]: m[u] = s v = e - n1 if v >= 0 and s > m[v]: m[v] = s print(m[0])