結果
問題 | No.2982 Logic Battle |
ユーザー | amesyu |
提出日時 | 2024-12-14 00:01:04 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 954 bytes |
コンパイル時間 | 344 ms |
コンパイル使用メモリ | 82,228 KB |
実行使用メモリ | 77,776 KB |
最終ジャッジ日時 | 2024-12-14 00:01:10 |
合計ジャッジ時間 | 5,195 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,332 KB |
testcase_01 | AC | 38 ms
53,632 KB |
testcase_02 | AC | 37 ms
52,984 KB |
testcase_03 | AC | 37 ms
52,676 KB |
testcase_04 | AC | 37 ms
53,144 KB |
testcase_05 | AC | 38 ms
52,724 KB |
testcase_06 | AC | 36 ms
53,084 KB |
testcase_07 | AC | 37 ms
52,436 KB |
testcase_08 | AC | 36 ms
53,164 KB |
testcase_09 | AC | 36 ms
53,212 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 120 ms
77,644 KB |
testcase_31 | AC | 41 ms
52,944 KB |
testcase_32 | AC | 85 ms
76,832 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
ソースコード
n = int(input()) dp = [[(0, 0)], [(0, 0)], [(0, 0)]] # power = 0, deal_damage = 0 for _ in range(n): a = list(map(int, input().split())) pre = [[], [], []] for i in range(3): for s, c in dp[i]: power = s + a[i] for j in range(3): if i == j: continue pre[j].append((max(0, power - 1), c + power)) nxt = [[], [], []] # s1, c1 : s2, c2 # for i in range(3): for p in range(len(pre[i])): add = True for q in range(len(pre[i])): if p == q: continue s1, c1 = pre[i][p] s2, c2 = pre[i][q] if p >= q and s1 == s2 and c1 == c2: add = False if (s2 - s1) > (c1 - c2) * (n - i) + n: add = False if add: nxt[i].append(pre[i][p]) dp = nxt[::] ans = 0 for i in range(3): for p, c in dp[i]: ans = max(ans, c) print(ans)