結果

問題 No.2814 Block Game
ユーザー ks2mks2m
提出日時 2024-07-19 22:22:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 564 ms / 2,000 ms
コード長 845 bytes
コンパイル時間 3,812 ms
コンパイル使用メモリ 76,728 KB
実行使用メモリ 47,016 KB
最終ジャッジ日時 2024-07-19 22:23:04
合計ジャッジ時間 16,273 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,248 KB
testcase_01 AC 552 ms
47,016 KB
testcase_02 AC 523 ms
46,628 KB
testcase_03 AC 564 ms
46,608 KB
testcase_04 AC 529 ms
46,632 KB
testcase_05 AC 559 ms
46,328 KB
testcase_06 AC 524 ms
46,496 KB
testcase_07 AC 525 ms
46,128 KB
testcase_08 AC 547 ms
46,624 KB
testcase_09 AC 525 ms
46,696 KB
testcase_10 AC 538 ms
46,448 KB
testcase_11 AC 528 ms
46,264 KB
testcase_12 AC 543 ms
46,276 KB
testcase_13 AC 524 ms
46,284 KB
testcase_14 AC 545 ms
46,376 KB
testcase_15 AC 516 ms
46,668 KB
testcase_16 AC 556 ms
46,356 KB
testcase_17 AC 520 ms
46,552 KB
testcase_18 AC 544 ms
46,352 KB
testcase_19 AC 532 ms
46,772 KB
testcase_20 AC 543 ms
46,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int t = Integer.parseInt(br.readLine());
		PrintWriter pw = new PrintWriter(System.out);
		for (int z = 0; z < t; z++) {
			String[] sa = br.readLine().split(" ");
			long n = Long.parseLong(sa[0]);
			String s = sa[1];

			boolean a = true;
			if (n == 1) {
				if (s.equals("Even")) a = false;
			} else if (n == 2) {
				if (s.equals("Even")) a = false;
			} else if (Long.bitCount(n) == 1) {
				if (s.equals("Odd")) a = false;
			} else if (n % 2 == 0) {
				a = false;
			}
			if (a) {
				pw.println("Alice");
			} else {
				pw.println("Bob");
			}
		}
		pw.flush();
		br.close();
	}
}
0