結果
問題 | No.91 赤、緑、青の石 |
ユーザー | y |
提出日時 | 2016-03-17 22:15:10 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,139 bytes |
コンパイル時間 | 2,279 ms |
コンパイル使用メモリ | 77,320 KB |
実行使用メモリ | 53,632 KB |
最終ジャッジ日時 | 2024-10-01 08:53:25 |
合計ジャッジ時間 | 5,453 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 72 ms
38,068 KB |
testcase_01 | WA | - |
testcase_02 | AC | 72 ms
38,100 KB |
testcase_03 | AC | 72 ms
38,104 KB |
testcase_04 | AC | 69 ms
37,816 KB |
testcase_05 | AC | 71 ms
37,832 KB |
testcase_06 | WA | - |
testcase_07 | AC | 44 ms
37,268 KB |
testcase_08 | WA | - |
testcase_09 | AC | 44 ms
36,864 KB |
testcase_10 | AC | 45 ms
36,920 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 73 ms
38,024 KB |
testcase_16 | AC | 46 ms
36,584 KB |
testcase_17 | AC | 45 ms
37,004 KB |
testcase_18 | AC | 48 ms
36,864 KB |
testcase_19 | AC | 45 ms
37,100 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 44 ms
36,576 KB |
testcase_24 | AC | 45 ms
37,116 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] rgbs = br.readLine().split(" "); int[] rgb = new int[3]; for (int i = 0; i < 3; i++) { rgb[i] = Integer.parseInt(rgbs[i]); } while (true) { int avg = (rgb[0] + rgb[1] + rgb[2]) / 3; if (rgb[0] < avg + 2 && rgb[1] < avg + 2 && rgb[2] < avg + 2) { break; } for (int i = 0; i < 3; i++) { while (rgb[i] >= avg + 2) { for (int j = 0; j < 3; j++) { if (j == i) continue; if (rgb[j] <= avg) { rgb[j]++; rgb[i] -= 2; break; } } } } } System.out.println(Math.min(Math.min(rgb[0], rgb[1]), rgb[2])); } }