結果

問題 No.2175 Exciting Combo
ユーザー tk55513tk55513
提出日時 2023-02-17 19:13:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 2,185 ms
コンパイル使用メモリ 90,656 KB
実行使用メモリ 41,212 KB
最終ジャッジ日時 2024-07-19 10:57:40
合計ジャッジ時間 4,068 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
39,968 KB
testcase_01 AC 118 ms
40,060 KB
testcase_02 AC 120 ms
41,128 KB
testcase_03 AC 116 ms
40,136 KB
testcase_04 AC 113 ms
40,068 KB
testcase_05 AC 126 ms
41,164 KB
testcase_06 AC 110 ms
40,304 KB
testcase_07 AC 130 ms
41,212 KB
testcase_08 AC 121 ms
41,072 KB
testcase_09 AC 106 ms
40,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
    public static void main(String... args){
        Scanner sc=new Scanner(System.in);
        List<Integer> lst = new ArrayList<>();
        for (int i = 0; i < 3; i++) {
            lst.add(sc.nextInt());
        }
        int max=lst.stream().mapToInt(i->i).max().orElseThrow();
        int sum=lst.stream().mapToInt(i->i).sum();
        int b=sc.nextInt();
        System.out.println(Math.max(max*3,sum+b));

    }
}
0