結果
問題 | No.2110 012 Matching |
ユーザー | Theta |
提出日時 | 2022-10-31 13:51:02 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 782 ms / 2,000 ms |
コード長 | 444 bytes |
コンパイル時間 | 644 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-08 03:07:59 |
合計ジャッジ時間 | 6,830 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
10,496 KB |
testcase_01 | AC | 207 ms
10,496 KB |
testcase_02 | AC | 498 ms
10,624 KB |
testcase_03 | AC | 340 ms
10,496 KB |
testcase_04 | AC | 668 ms
10,496 KB |
testcase_05 | AC | 496 ms
10,752 KB |
testcase_06 | AC | 447 ms
10,624 KB |
testcase_07 | AC | 782 ms
10,752 KB |
testcase_08 | AC | 58 ms
10,496 KB |
testcase_09 | AC | 150 ms
10,624 KB |
testcase_10 | AC | 781 ms
10,752 KB |
testcase_11 | AC | 25 ms
10,496 KB |
ソースコード
def best_choice(a: int, b: int, c: int) -> int: if b >= 2: return (b // 2)*2 + best_choice(a, b - (b//2)*2, c) if a > 0: if c > 0: return min(a, c) * 2 + best_choice(a-min(a, c), b, c-min(a, c)) return min(a, b) return c // 2 def main(): for _ in range(int(input())): A, B, C = map(int, input().split()) print(best_choice(A, B, C)) if __name__ == "__main__": main()