結果

問題 No.91 赤、緑、青の石
ユーザー jp_stejp_ste
提出日時 2016-05-26 05:18:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 5,000 ms
コード長 1,230 bytes
コンパイル時間 2,078 ms
コンパイル使用メモリ 78,084 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-06-24 06:58:49
合計ジャッジ時間 7,380 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
53,572 KB
testcase_01 AC 147 ms
54,132 KB
testcase_02 AC 140 ms
54,024 KB
testcase_03 AC 138 ms
54,048 KB
testcase_04 AC 135 ms
54,076 KB
testcase_05 AC 140 ms
53,788 KB
testcase_06 AC 134 ms
54,004 KB
testcase_07 AC 125 ms
54,004 KB
testcase_08 AC 122 ms
53,916 KB
testcase_09 AC 125 ms
53,712 KB
testcase_10 AC 123 ms
53,816 KB
testcase_11 AC 132 ms
54,036 KB
testcase_12 AC 144 ms
54,084 KB
testcase_13 AC 130 ms
53,220 KB
testcase_14 AC 144 ms
53,552 KB
testcase_15 AC 126 ms
53,200 KB
testcase_16 AC 126 ms
54,112 KB
testcase_17 AC 111 ms
52,628 KB
testcase_18 AC 126 ms
53,724 KB
testcase_19 AC 127 ms
53,964 KB
testcase_20 AC 124 ms
54,108 KB
testcase_21 AC 127 ms
54,000 KB
testcase_22 AC 124 ms
53,856 KB
testcase_23 AC 127 ms
54,024 KB
testcase_24 AC 126 ms
53,832 KB
testcase_25 AC 179 ms
54,228 KB
testcase_26 AC 151 ms
53,904 KB
testcase_27 AC 125 ms
53,984 KB
testcase_28 AC 119 ms
52,960 KB
testcase_29 AC 140 ms
53,788 KB
testcase_30 AC 146 ms
54,032 KB
testcase_31 AC 149 ms
53,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            int v[] = new int[3];
            v[0] = Integer.parseInt(scan.next());
            v[1] = Integer.parseInt(scan.next());
            v[2] = Integer.parseInt(scan.next());
            
            while(true) {
                if(v[0] == v[1] && v[0] == v[2]) {
                    System.out.println(v[0]);
                    return;
                }
                
                int maxI = 0;
                int minI = 0;
                int max = v[maxI];
                int min = v[minI];
                for(int i=1; i<3; i++) {
                    if(max < v[i]) {
                        max = v[i];
                        maxI = i;
                    }
                    if(min > v[i]) {
                        min = v[i];
                        minI = i;
                    }
                }
                
                if(max - min == 1) {
                    System.out.println(min);
                    return;
                }
                
                v[maxI] -= 2;
                v[minI] += 1;
            }
        }
    }
}
0