結果

問題 No.1506 Unbalanced Pocky Game
ユーザー ripityripity
提出日時 2021-12-13 21:04:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 795 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 2,135 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 56,316 KB
最終ジャッジ日時 2024-07-22 20:22:19
合計ジャッジ時間 32,291 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
51,932 KB
testcase_01 AC 124 ms
49,968 KB
testcase_02 AC 126 ms
50,136 KB
testcase_03 AC 227 ms
53,292 KB
testcase_04 AC 580 ms
55,276 KB
testcase_05 AC 551 ms
56,316 KB
testcase_06 AC 510 ms
54,968 KB
testcase_07 AC 451 ms
54,864 KB
testcase_08 AC 525 ms
55,148 KB
testcase_09 AC 524 ms
54,720 KB
testcase_10 AC 578 ms
49,652 KB
testcase_11 AC 434 ms
48,312 KB
testcase_12 AC 412 ms
48,164 KB
testcase_13 AC 301 ms
47,788 KB
testcase_14 AC 454 ms
48,452 KB
testcase_15 AC 394 ms
48,132 KB
testcase_16 AC 503 ms
48,684 KB
testcase_17 AC 456 ms
48,324 KB
testcase_18 AC 369 ms
47,820 KB
testcase_19 AC 358 ms
48,212 KB
testcase_20 AC 587 ms
49,724 KB
testcase_21 AC 433 ms
48,160 KB
testcase_22 AC 505 ms
48,408 KB
testcase_23 AC 108 ms
40,284 KB
testcase_24 AC 107 ms
40,328 KB
testcase_25 AC 682 ms
52,580 KB
testcase_26 AC 745 ms
52,840 KB
testcase_27 AC 747 ms
53,780 KB
testcase_28 AC 738 ms
52,792 KB
testcase_29 AC 795 ms
52,692 KB
testcase_30 AC 668 ms
52,776 KB
testcase_31 AC 714 ms
53,528 KB
testcase_32 AC 729 ms
53,348 KB
testcase_33 AC 746 ms
53,088 KB
testcase_34 AC 705 ms
52,932 KB
testcase_35 AC 709 ms
52,808 KB
testcase_36 AC 141 ms
41,964 KB
testcase_37 AC 168 ms
42,316 KB
testcase_38 AC 143 ms
41,724 KB
testcase_39 AC 137 ms
41,436 KB
testcase_40 AC 135 ms
41,700 KB
testcase_41 AC 155 ms
41,976 KB
testcase_42 AC 137 ms
42,128 KB
testcase_43 AC 141 ms
41,380 KB
testcase_44 AC 137 ms
41,416 KB
testcase_45 AC 138 ms
41,284 KB
testcase_46 AC 413 ms
47,020 KB
testcase_47 AC 343 ms
47,936 KB
testcase_48 AC 383 ms
48,072 KB
testcase_49 AC 545 ms
48,324 KB
testcase_50 AC 535 ms
48,844 KB
testcase_51 AC 541 ms
48,652 KB
testcase_52 AC 516 ms
48,640 KB
testcase_53 AC 566 ms
48,484 KB
testcase_54 AC 419 ms
48,112 KB
testcase_55 AC 340 ms
48,072 KB
testcase_56 AC 323 ms
48,112 KB
testcase_57 AC 489 ms
48,400 KB
testcase_58 AC 328 ms
48,064 KB
testcase_59 AC 270 ms
47,680 KB
testcase_60 AC 402 ms
48,100 KB
testcase_61 AC 509 ms
48,456 KB
testcase_62 AC 486 ms
48,356 KB
testcase_63 AC 429 ms
48,052 KB
testcase_64 AC 521 ms
48,320 KB
testcase_65 AC 462 ms
48,116 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]);
                return;
            }
        }
        
        System.out.println(ans[N%2]);
        
    }
    
}
0