結果
| 問題 |
No.2233 Average
|
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2024-07-30 17:41:55 |
| 言語 | Java (openjdk 23) |
| 結果 |
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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 WA * 17 |
ソースコード
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();
}
}
}
tenten