結果

問題 No.91 赤、緑、青の石
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-19 12:13:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 563 bytes
コンパイル時間 1,940 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-07-04 17:53:00
合計ジャッジ時間 7,180 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
40,472 KB
testcase_01 AC 145 ms
40,404 KB
testcase_02 AC 128 ms
40,440 KB
testcase_03 AC 158 ms
41,268 KB
testcase_04 AC 144 ms
41,056 KB
testcase_05 AC 157 ms
40,996 KB
testcase_06 WA -
testcase_07 AC 107 ms
40,140 KB
testcase_08 AC 118 ms
41,408 KB
testcase_09 AC 105 ms
39,976 KB
testcase_10 AC 100 ms
40,276 KB
testcase_11 AC 138 ms
41,288 KB
testcase_12 AC 150 ms
40,440 KB
testcase_13 AC 177 ms
41,160 KB
testcase_14 AC 155 ms
40,672 KB
testcase_15 AC 173 ms
41,296 KB
testcase_16 AC 100 ms
40,248 KB
testcase_17 AC 109 ms
40,960 KB
testcase_18 AC 100 ms
40,080 KB
testcase_19 AC 99 ms
40,248 KB
testcase_20 AC 110 ms
41,040 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 114 ms
41,420 KB
testcase_24 AC 100 ms
40,196 KB
testcase_25 AC 181 ms
41,188 KB
testcase_26 AC 168 ms
40,504 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 138 ms
40,512 KB
testcase_31 AC 159 ms
40,428 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);
        }
        System.out.println(number);
    }
}
0