結果
問題 | No.2175 Exciting Combo |
ユーザー | terasa |
提出日時 | 2023-01-07 11:52:05 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 68 ms / 2,000 ms |
コード長 | 582 bytes |
コンパイル時間 | 224 ms |
コンパイル使用メモリ | 82,044 KB |
実行使用メモリ | 69,008 KB |
最終ジャッジ日時 | 2024-12-14 11:20:43 |
合計ジャッジ時間 | 1,537 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 63 ms
68,544 KB |
testcase_01 | AC | 67 ms
68,640 KB |
testcase_02 | AC | 63 ms
68,012 KB |
testcase_03 | AC | 64 ms
68,828 KB |
testcase_04 | AC | 68 ms
68,796 KB |
testcase_05 | AC | 65 ms
69,008 KB |
testcase_06 | AC | 65 ms
67,640 KB |
testcase_07 | AC | 65 ms
67,992 KB |
testcase_08 | AC | 64 ms
67,640 KB |
testcase_09 | AC | 65 ms
67,816 KB |
ソースコード
from typing import List, Tuple, Callable, TypeVar, Optional import sys import itertools import heapq import bisect import math from collections import deque, defaultdict from functools import lru_cache, cmp_to_key input = sys.stdin.readline if __file__ != 'prog.py': sys.setrecursionlimit(10 ** 6) def readints(): return map(int, input().split()) def readlist(): return list(readints()) def readstr(): return input()[:-1] def readlist1(): return list(map(lambda x: int(x) - 1, input().split())) a1, a2, a3, b = readints() print(max(max(a1, a2, a3) * 3, a1 + a2 + a3 + b))