結果
問題 |
No.2233 Average
|
ユーザー |
![]() |
提出日時 | 2024-07-30 17:38:59 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,956 bytes |
コンパイル時間 | 2,837 ms |
コンパイル使用メモリ | 90,000 KB |
実行使用メモリ | 62,348 KB |
最終ジャッジ日時 | 2024-07-30 17:39:09 |
合計ジャッジ時間 | 8,592 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 1 WA * 1 TLE * 1 -- * 15 |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); String result = IntStream.range(0, n).mapToObj(a -> { long[] values = new long[3]; for (int i = 0; i < 3; i++) { values[i] = sc.nextLong(); } long k = sc.nextLong(); while (k-- > 0 && !isEven(values)) { long[] next = new long[3]; for (int i = 0; i < 3; i++) { next[i] = (values[(i + 1) % 3] + values[(i + 2) % 3]) / 2; } values = next; } return String.valueOf(Arrays.stream(values).sum()); }).collect(Collectors.joining("\n")); System.out.println(result); } static boolean isEven(long[] arr) { for (long x : arr) { if (x % 2 == 1) { return false; } } return true; } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }