結果

問題 No.91 赤、緑、青の石
ユーザー YamaKasaYamaKasa
提出日時 2018-07-06 15:22:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 862 bytes
コンパイル時間 2,340 ms
コンパイル使用メモリ 76,812 KB
実行使用メモリ 55,708 KB
最終ジャッジ日時 2024-07-01 02:46:13
合計ジャッジ時間 8,055 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 133 ms
53,768 KB
testcase_07 AC 133 ms
53,756 KB
testcase_08 AC 132 ms
53,816 KB
testcase_09 AC 132 ms
53,656 KB
testcase_10 AC 132 ms
53,776 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 132 ms
53,852 KB
testcase_17 AC 132 ms
54,268 KB
testcase_18 AC 131 ms
53,588 KB
testcase_19 AC 133 ms
54,072 KB
testcase_20 AC 133 ms
53,944 KB
testcase_21 AC 136 ms
53,832 KB
testcase_22 AC 136 ms
53,888 KB
testcase_23 AC 130 ms
53,776 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 134 ms
53,916 KB
testcase_28 AC 135 ms
54,188 KB
testcase_29 AC 135 ms
54,024 KB
testcase_30 AC 135 ms
54,012 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);
		int cnt = 0;
		cnt += n[0];
		n[1] -= n[0];
		n[2] -= n[0];

		int a = n[2] / 3;
		if(a >= n[1]) {
			cnt += n[1];
			cnt += (n[2] - 3 * n[1]) / 5;
			System.out.println(cnt);
		}else {
			cnt += a;
			n[1] -= a;
			n[2] -= 3 * a;
			if(n[2] == 0) {
				cnt += n[1] / 5;
			}else if(n[2] == 1){
				if(n[1] - 3 >= 0) {
					cnt += 1;
					n[1] -= 3;
				}
				cnt += n[1] / 5;
			}else {
				if(n[1] - 6 >= 0) {
					cnt += 2;
					n[1] -= 6;
				}else if(n[1] - 3 >= 0) {
					cnt += 1;
					n[1] -= 3;
				}
				cnt += n[1] / 5;
			}
			System.out.println(cnt);
		}
	}
}
0