結果

問題 No.1506 Unbalanced Pocky Game
ユーザー ripityripity
提出日時 2021-12-13 21:02:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 526 bytes
コンパイル時間 5,114 ms
コンパイル使用メモリ 83,336 KB
実行使用メモリ 60,244 KB
最終ジャッジ日時 2024-07-22 20:18:00
合計ジャッジ時間 34,271 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,496 KB
testcase_01 AC 125 ms
41,568 KB
testcase_02 AC 110 ms
40,120 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 AC 312 ms
48,092 KB
testcase_14 AC 443 ms
48,212 KB
testcase_15 AC 389 ms
48,500 KB
testcase_16 AC 520 ms
48,140 KB
testcase_17 AC 443 ms
48,064 KB
testcase_18 AC 364 ms
48,096 KB
testcase_19 AC 355 ms
48,032 KB
testcase_20 AC 615 ms
48,756 KB
testcase_21 AC 410 ms
48,316 KB
testcase_22 AC 495 ms
48,236 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 673 ms
52,988 KB
testcase_26 AC 754 ms
52,712 KB
testcase_27 AC 739 ms
53,060 KB
testcase_28 AC 667 ms
52,932 KB
testcase_29 AC 720 ms
52,812 KB
testcase_30 AC 755 ms
52,944 KB
testcase_31 AC 683 ms
53,628 KB
testcase_32 AC 710 ms
53,300 KB
testcase_33 AC 713 ms
52,972 KB
testcase_34 AC 748 ms
53,060 KB
testcase_35 AC 719 ms
52,804 KB
testcase_36 AC 137 ms
41,424 KB
testcase_37 AC 162 ms
41,692 KB
testcase_38 AC 150 ms
41,544 KB
testcase_39 AC 138 ms
41,824 KB
testcase_40 AC 128 ms
41,796 KB
testcase_41 AC 146 ms
42,064 KB
testcase_42 AC 154 ms
41,828 KB
testcase_43 AC 142 ms
41,564 KB
testcase_44 AC 143 ms
42,076 KB
testcase_45 AC 130 ms
41,696 KB
testcase_46 AC 524 ms
48,328 KB
testcase_47 AC 328 ms
48,284 KB
testcase_48 AC 374 ms
48,088 KB
testcase_49 AC 559 ms
48,672 KB
testcase_50 AC 478 ms
48,100 KB
testcase_51 AC 518 ms
48,596 KB
testcase_52 AC 503 ms
48,240 KB
testcase_53 AC 555 ms
48,560 KB
testcase_54 AC 372 ms
48,232 KB
testcase_55 AC 335 ms
47,868 KB
testcase_56 AC 310 ms
46,784 KB
testcase_57 AC 511 ms
48,444 KB
testcase_58 AC 343 ms
47,972 KB
testcase_59 AC 272 ms
47,544 KB
testcase_60 AC 416 ms
48,424 KB
testcase_61 AC 494 ms
48,364 KB
testcase_62 AC 448 ms
48,076 KB
testcase_63 AC 430 ms
48,428 KB
testcase_64 AC 498 ms
48,468 KB
testcase_65 AC 470 ms
48,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int[] A = new int[N];
        String[] ans = {"Bob","Alice"};
        for( int i = 0; i < N; i++ ) {
            A[i] = sc.nextInt();
        }
        
        for( int i = N-1; i >= 0; i-- ) {
            if( A[i] != 1 ) {
                System.out.println(ans[(N-i)%2]);
                break;
            }
        }
        
    }
    
}
0