結果

問題 No.91 赤、緑、青の石
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-19 12:17:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 214 ms / 5,000 ms
コード長 644 bytes
コンパイル時間 2,416 ms
コンパイル使用メモリ 74,252 KB
実行使用メモリ 41,708 KB
最終ジャッジ日時 2024-06-24 06:48:08
合計ジャッジ時間 8,255 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 200 ms
41,536 KB
testcase_01 AC 185 ms
41,564 KB
testcase_02 AC 170 ms
41,176 KB
testcase_03 AC 183 ms
41,708 KB
testcase_04 AC 166 ms
41,528 KB
testcase_05 AC 186 ms
41,340 KB
testcase_06 AC 148 ms
41,192 KB
testcase_07 AC 127 ms
41,408 KB
testcase_08 AC 130 ms
41,428 KB
testcase_09 AC 127 ms
41,412 KB
testcase_10 AC 130 ms
41,160 KB
testcase_11 AC 165 ms
41,184 KB
testcase_12 AC 187 ms
41,684 KB
testcase_13 AC 200 ms
41,368 KB
testcase_14 AC 177 ms
41,288 KB
testcase_15 AC 198 ms
41,616 KB
testcase_16 AC 127 ms
41,440 KB
testcase_17 AC 129 ms
41,220 KB
testcase_18 AC 132 ms
41,560 KB
testcase_19 AC 131 ms
41,060 KB
testcase_20 AC 130 ms
41,268 KB
testcase_21 AC 129 ms
41,140 KB
testcase_22 AC 132 ms
41,008 KB
testcase_23 AC 116 ms
40,280 KB
testcase_24 AC 132 ms
41,196 KB
testcase_25 AC 214 ms
41,552 KB
testcase_26 AC 211 ms
41,268 KB
testcase_27 AC 128 ms
41,228 KB
testcase_28 AC 136 ms
41,520 KB
testcase_29 AC 144 ms
41,480 KB
testcase_30 AC 174 ms
41,324 KB
testcase_31 AC 205 ms
41,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int[] a = new int[3];
        for(int i=0; i<3; i++){
            a[i]=koko.nextInt();
        }
        Arrays.sort(a);
        int number=a[0];
        for(int i=0; i<3; i++){
            a[i]=a[i]-number;
        }
        while(a[2]>=3&&a[1]>=1){
            a[2]=a[2]-3;
            a[1]=a[1]-1;
            number++;
            Arrays.sort(a);
        }
        while(a[2]>=5){
            a[2]=a[2]-5;
            number++;
        }
        System.out.println(number);
    }
}
0