結果
問題 |
No.91 赤、緑、青の石
|
ユーザー |
![]() |
提出日時 | 2022-07-28 19:03:47 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 53 ms / 5,000 ms |
コード長 | 1,540 bytes |
コンパイル時間 | 2,991 ms |
コンパイル使用メモリ | 77,976 KB |
実行使用メモリ | 50,516 KB |
最終ジャッジ日時 | 2024-07-18 09:40:31 |
合計ジャッジ時間 | 5,156 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 28 |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int[] values = new int[3]; for (int i = 0; i < 3; i++) { values[i] = sc.nextInt(); } int left = 0; int right = Integer.MAX_VALUE / 2; while (right - left > 1) { int m = (left + right) / 2; int current = 0; for (int i = 0; i < 3; i++) { if (values[i] < m) { current -= m - values[i]; } else { current += (values[i] - m) / 2; } } if (current < 0) { right = m; } else { left = m; } } System.out.println(left); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }