結果
問題 | No.2233 Average |
ユーザー | tenten |
提出日時 | 2024-07-30 17:41:55 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,090 bytes |
コンパイル時間 | 2,757 ms |
コンパイル使用メモリ | 87,560 KB |
実行使用メモリ | 77,764 KB |
最終ジャッジ日時 | 2024-07-30 17:42:06 |
合計ジャッジ時間 | 10,549 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 71 ms
51,200 KB |
testcase_02 | AC | 72 ms
50,896 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
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) && !same(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; } static boolean same(long[] values) { return values[0] == values[1] && values[1] == values[2]; } } 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(); } } }