結果
問題 | No.2175 Exciting Combo |
ユーザー | Shirotsume |
提出日時 | 2023-01-06 21:23:52 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 40 ms / 2,000 ms |
コード長 | 384 bytes |
コンパイル時間 | 224 ms |
コンパイル使用メモリ | 82,280 KB |
実行使用メモリ | 55,548 KB |
最終ジャッジ日時 | 2024-05-07 20:52:46 |
合計ジャッジ時間 | 1,042 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
54,088 KB |
testcase_01 | AC | 39 ms
55,060 KB |
testcase_02 | AC | 40 ms
53,708 KB |
testcase_03 | AC | 38 ms
55,548 KB |
testcase_04 | AC | 38 ms
53,884 KB |
testcase_05 | AC | 38 ms
53,572 KB |
testcase_06 | AC | 38 ms
54,740 KB |
testcase_07 | AC | 36 ms
53,840 KB |
testcase_08 | AC | 37 ms
54,592 KB |
testcase_09 | AC | 38 ms
53,880 KB |
ソースコード
import sys from collections import deque, Counter sys.setrecursionlimit(5 * 10 ** 5) from pypyjit import set_param set_param('max_unroll_recursion=-1') input = lambda: sys.stdin.readline().rstrip() ii = lambda: int(input()) mi = lambda: map(int, input().split()) li = lambda: list(mi()) inf = 2 ** 63 - 1 mod = 998244353 a, b, c, d = mi() print(max(max(a, b, c) * 3, a + b + c + d))