結果

問題 No.2691 Longest Infection Sequence
ユーザー もぐら 3.0もぐら 3.0
提出日時 2024-03-22 21:25:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 62 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,712 KB
実行使用メモリ 53,400 KB
最終ジャッジ日時 2024-09-30 13:21:41
合計ジャッジ時間 1,245 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,612 KB
testcase_01 AC 34 ms
52,828 KB
testcase_02 AC 35 ms
51,984 KB
testcase_03 AC 34 ms
53,400 KB
testcase_04 AC 34 ms
52,360 KB
testcase_05 AC 33 ms
52,600 KB
testcase_06 AC 34 ms
52,140 KB
testcase_07 AC 34 ms
53,080 KB
testcase_08 AC 33 ms
53,008 KB
testcase_09 AC 35 ms
52,380 KB
testcase_10 AC 34 ms
52,672 KB
testcase_11 AC 33 ms
52,072 KB
testcase_12 AC 33 ms
52,204 KB
testcase_13 AC 33 ms
52,220 KB
testcase_14 AC 33 ms
51,904 KB
testcase_15 AC 33 ms
53,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,C,D = map(int,input().split())
print(max(C+D,C+A+D,C+B+D))
0