結果

問題 No.1506 Unbalanced Pocky Game
ユーザー ks2mks2m
提出日時 2021-05-14 22:23:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 807 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 2,191 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 53,392 KB
最終ジャッジ日時 2024-10-02 01:58:06
合計ジャッジ時間 34,940 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
39,964 KB
testcase_01 AC 133 ms
41,288 KB
testcase_02 AC 114 ms
40,000 KB
testcase_03 AC 236 ms
46,084 KB
testcase_04 AC 581 ms
48,160 KB
testcase_05 AC 602 ms
48,624 KB
testcase_06 AC 476 ms
48,308 KB
testcase_07 AC 478 ms
47,840 KB
testcase_08 AC 525 ms
48,120 KB
testcase_09 AC 615 ms
49,532 KB
testcase_10 AC 629 ms
49,452 KB
testcase_11 AC 472 ms
48,176 KB
testcase_12 AC 438 ms
47,972 KB
testcase_13 AC 323 ms
47,540 KB
testcase_14 AC 440 ms
48,116 KB
testcase_15 AC 431 ms
47,908 KB
testcase_16 AC 604 ms
49,224 KB
testcase_17 AC 470 ms
48,152 KB
testcase_18 AC 389 ms
48,016 KB
testcase_19 AC 391 ms
47,952 KB
testcase_20 AC 625 ms
49,472 KB
testcase_21 AC 445 ms
47,988 KB
testcase_22 AC 539 ms
48,252 KB
testcase_23 AC 132 ms
41,164 KB
testcase_24 AC 129 ms
41,076 KB
testcase_25 AC 704 ms
52,640 KB
testcase_26 AC 803 ms
53,136 KB
testcase_27 AC 807 ms
53,040 KB
testcase_28 AC 789 ms
53,060 KB
testcase_29 AC 756 ms
52,884 KB
testcase_30 AC 763 ms
53,392 KB
testcase_31 AC 799 ms
52,836 KB
testcase_32 AC 770 ms
52,772 KB
testcase_33 AC 733 ms
53,236 KB
testcase_34 AC 784 ms
52,908 KB
testcase_35 AC 743 ms
52,792 KB
testcase_36 AC 148 ms
41,300 KB
testcase_37 AC 165 ms
41,684 KB
testcase_38 AC 149 ms
41,560 KB
testcase_39 AC 145 ms
41,436 KB
testcase_40 AC 141 ms
41,508 KB
testcase_41 AC 170 ms
41,912 KB
testcase_42 AC 152 ms
41,536 KB
testcase_43 AC 162 ms
41,720 KB
testcase_44 AC 140 ms
41,208 KB
testcase_45 AC 138 ms
41,260 KB
testcase_46 AC 558 ms
48,108 KB
testcase_47 AC 326 ms
46,184 KB
testcase_48 AC 395 ms
47,776 KB
testcase_49 AC 533 ms
48,288 KB
testcase_50 AC 519 ms
48,392 KB
testcase_51 AC 569 ms
48,236 KB
testcase_52 AC 510 ms
48,004 KB
testcase_53 AC 599 ms
48,464 KB
testcase_54 AC 424 ms
47,860 KB
testcase_55 AC 361 ms
47,924 KB
testcase_56 AC 378 ms
47,824 KB
testcase_57 AC 522 ms
48,368 KB
testcase_58 AC 365 ms
47,848 KB
testcase_59 AC 287 ms
47,436 KB
testcase_60 AC 451 ms
48,060 KB
testcase_61 AC 560 ms
48,160 KB
testcase_62 AC 504 ms
48,120 KB
testcase_63 AC 439 ms
47,996 KB
testcase_64 AC 536 ms
48,340 KB
testcase_65 AC 469 ms
48,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		boolean[] b = new boolean[n + 1];
		for (int i = 0; i < n; i++) {
			b[i + 1] = !b[i];
			if (!b[i + 1] && a[i] > 1) {
				b[i + 1] = !b[i + 1];
			}
		}
		if (b[n]) {
			System.out.println("Alice");
		} else {
			System.out.println("Bob");
		}
	}
}
0