結果

問題 No.2175 Exciting Combo
ユーザー CecilCecil
提出日時 2023-01-12 19:57:51
言語 Java
(openjdk 23)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 3,808 ms
コンパイル使用メモリ 75,140 KB
実行使用メモリ 41,452 KB
最終ジャッジ日時 2024-12-23 13:09:57
合計ジャッジ時間 4,818 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,368 KB
testcase_01 AC 127 ms
41,240 KB
testcase_02 AC 119 ms
40,840 KB
testcase_03 AC 123 ms
41,008 KB
testcase_04 AC 120 ms
41,112 KB
testcase_05 AC 119 ms
41,044 KB
testcase_06 AC 119 ms
41,380 KB
testcase_07 AC 118 ms
41,184 KB
testcase_08 AC 122 ms
41,224 KB
testcase_09 AC 113 ms
41,452 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