結果

問題 No.2175 Exciting Combo
ユーザー タコイモタコイモ
提出日時 2023-01-06 21:21:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 54,016 KB
最終ジャッジ日時 2024-05-07 20:50:20
合計ジャッジ時間 1,248 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,760 KB
testcase_01 AC 48 ms
53,632 KB
testcase_02 AC 45 ms
53,632 KB
testcase_03 AC 46 ms
53,760 KB
testcase_04 AC 44 ms
53,504 KB
testcase_05 AC 44 ms
53,632 KB
testcase_06 AC 44 ms
53,888 KB
testcase_07 AC 44 ms
53,888 KB
testcase_08 AC 43 ms
54,016 KB
testcase_09 AC 44 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(500000)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
from collections import defaultdict,deque
import bisect
import itertools
dic = defaultdict(int)
d = deque()
a,b,c,d = MI()
print(max(a+b+c+d,max(a,b,c)*3))
0