結果

問題 No.91 赤、緑、青の石
ユーザー YamaKasaYamaKasa
提出日時 2018-07-06 16:24:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 908 bytes
コンパイル時間 2,096 ms
コンパイル使用メモリ 77,040 KB
実行使用メモリ 56,076 KB
最終ジャッジ日時 2024-07-01 02:46:41
合計ジャッジ時間 7,921 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 147 ms
54,232 KB
testcase_07 AC 132 ms
54,420 KB
testcase_08 AC 132 ms
54,264 KB
testcase_09 AC 132 ms
54,148 KB
testcase_10 AC 132 ms
54,340 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 133 ms
54,264 KB
testcase_17 AC 132 ms
54,496 KB
testcase_18 AC 135 ms
53,884 KB
testcase_19 AC 132 ms
54,168 KB
testcase_20 AC 131 ms
54,312 KB
testcase_21 AC 131 ms
54,160 KB
testcase_22 AC 132 ms
53,960 KB
testcase_23 AC 131 ms
54,332 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 132 ms
54,260 KB
testcase_28 AC 141 ms
54,128 KB
testcase_29 AC 139 ms
54,000 KB
testcase_30 AC 145 ms
53,924 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int n[] = new int[3];
		n[0] = scan.nextInt();
		n[1] = scan.nextInt();
		n[2] = scan.nextInt();
		scan.close();
		Arrays.sort(n);
		long cnt = 0;
		cnt += n[0];
		n[1] -= n[0];
		n[2] -= n[0];

		boolean flag = true;
		while(flag) {
			if(n[1] <= 2 && n[2] <= 2) {
				flag = false;
			}else {
				if(n[2] - 3 >= 0 && n[1] >= 1) {
					n[2] -= 3;
					n[1] --;
					cnt ++;
				}else if(n[1] - 3 >= 0 && n[2] >= 1) {
					n[2] --;
					n[1] -= 3;
					cnt ++;
				}else if(n[1] == 0) {
					if(n[2] - 5 >= 0) {
						n[2] -= 5;
						cnt ++;
					}else {
						flag = false;
					}
				}else if(n[2] == 0) {
					if(n[1] - 5 >= 0) {
						n[1] -= 5;
						cnt++;
					}else {
						flag = false;
					}
				}
			}
		}
		System.out.println(cnt);

	}
}
0