結果

問題 No.2175 Exciting Combo
ユーザー CecilCecil
提出日時 2023-01-12 19:57:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 2,069 ms
コンパイル使用メモリ 74,668 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-06-06 02:24:42
合計ジャッジ時間 3,843 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,120 KB
testcase_01 AC 117 ms
41,100 KB
testcase_02 AC 118 ms
41,372 KB
testcase_03 AC 114 ms
41,204 KB
testcase_04 AC 110 ms
40,084 KB
testcase_05 AC 120 ms
41,292 KB
testcase_06 AC 107 ms
39,876 KB
testcase_07 AC 119 ms
41,472 KB
testcase_08 AC 121 ms
41,040 KB
testcase_09 AC 119 ms
40,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String args[]) {
		Scanner scan = new Scanner(System.in);

		int a1 = scan.hasNextInt() ? scan.nextInt() : -1;
		int a2 = scan.hasNextInt() ? scan.nextInt() : -1;
		int a3 = scan.hasNextInt() ? scan.nextInt() : -1;
		int b = scan.hasNextInt() ? scan.nextInt() : -1;
		if (a1 > 100 || a1 < 1 || a2 > 100 || a2 < 1 || a3 > 100 || a3 < 1 || b > 100 || b < 1) {
			System.out.println("入力エラー1");
			return;
		}
		if (a1 > a2 || a2 > a3) {
			System.out.println("入力エラー2");
			return;
		}

		int max = a3 * 3;
		int nol = a1 + a2 + a3 + b;

		int ans = 0;
		if(max < nol){
			ans = nol;
		}else{
			ans = max;
		}

		// 結果出力
		System.out.println(ans);

	}
}
0