結果

問題 No.91 赤、緑、青の石
ユーザー k_kadorak_kadora
提出日時 2015-06-15 06:26:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 5,000 ms
コード長 530 bytes
コンパイル時間 3,363 ms
コンパイル使用メモリ 74,528 KB
実行使用メモリ 41,812 KB
最終ジャッジ日時 2024-06-24 06:50:19
合計ジャッジ時間 8,892 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
41,548 KB
testcase_01 AC 143 ms
41,220 KB
testcase_02 AC 129 ms
40,760 KB
testcase_03 AC 144 ms
41,812 KB
testcase_04 AC 144 ms
41,140 KB
testcase_05 AC 147 ms
41,388 KB
testcase_06 AC 123 ms
40,412 KB
testcase_07 AC 119 ms
40,040 KB
testcase_08 AC 135 ms
41,340 KB
testcase_09 AC 133 ms
41,548 KB
testcase_10 AC 134 ms
41,212 KB
testcase_11 AC 142 ms
41,196 KB
testcase_12 AC 153 ms
41,292 KB
testcase_13 AC 148 ms
41,520 KB
testcase_14 AC 148 ms
41,480 KB
testcase_15 AC 151 ms
41,548 KB
testcase_16 AC 133 ms
41,120 KB
testcase_17 AC 131 ms
41,148 KB
testcase_18 AC 132 ms
41,532 KB
testcase_19 AC 118 ms
40,108 KB
testcase_20 AC 132 ms
41,224 KB
testcase_21 AC 135 ms
41,556 KB
testcase_22 AC 135 ms
41,048 KB
testcase_23 AC 133 ms
41,448 KB
testcase_24 AC 133 ms
41,272 KB
testcase_25 AC 148 ms
41,176 KB
testcase_26 AC 151 ms
41,400 KB
testcase_27 AC 132 ms
41,396 KB
testcase_28 AC 135 ms
41,336 KB
testcase_29 AC 135 ms
41,380 KB
testcase_30 AC 146 ms
41,304 KB
testcase_31 AC 155 ms
41,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;
public class Yuki91{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int[] a = new int[3];
		int temp,res=0;
		for(int i = 0;i<3;i++){
			a[i] = sc.nextInt();
		}
		Arrays.sort(a);
		res = a[0];
		for(int i = 0;i<3;i++){
			a[i] -= res;
		}
		while(a[1] > 0){
			if(a[2] < 3)break;
			res++;
			a[2] -=3;
			a[1]--;
			if(a[1] > a[2]){
				temp = a[1];
				a[1] = a[2];
				a[2] = temp;
			}
		}
		res += a[2] / 5;
		System.out.println(res);
	}
}
0