結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー C_nena_EC_nena_E
提出日時 2020-01-31 21:52:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 656 bytes
コンパイル時間 2,015 ms
コンパイル使用メモリ 74,456 KB
実行使用メモリ 64,476 KB
最終ジャッジ日時 2024-09-17 07:58:54
合計ジャッジ時間 10,402 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 103 ms
54,396 KB
testcase_02 AC 99 ms
53,088 KB
testcase_03 AC 104 ms
52,980 KB
testcase_04 AC 105 ms
52,992 KB
testcase_05 AC 114 ms
54,196 KB
testcase_06 AC 116 ms
54,148 KB
testcase_07 AC 120 ms
54,056 KB
testcase_08 AC 127 ms
54,376 KB
testcase_09 AC 130 ms
54,112 KB
testcase_10 WA -
testcase_11 AC 121 ms
54,204 KB
testcase_12 AC 139 ms
54,040 KB
testcase_13 WA -
testcase_14 AC 274 ms
58,904 KB
testcase_15 AC 265 ms
58,620 KB
testcase_16 WA -
testcase_17 AC 285 ms
57,908 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 494 ms
59,360 KB
testcase_21 AC 602 ms
61,608 KB
testcase_22 AC 704 ms
63,444 KB
testcase_23 AC 676 ms
63,812 KB
testcase_24 AC 693 ms
63,944 KB
testcase_25 AC 678 ms
64,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
 
public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        if(N == 2){
            System.out.println("Alice");
            return;
        }
        int[] map = new int[N]; 
        for(int i = 0; i < N-1; i++){
            map[sc.nextInt()]++;
            map[sc.nextInt()]++;
        }
        for(int i = 0; i < N; i++){
            if(map[i] == 0){
                System.out.println("Alice");
                return;
            }
        }
        System.out.println("Bob");
    }
}
0