結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー C_nena_EC_nena_E
提出日時 2020-01-31 21:52:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 565 bytes
コンパイル時間 1,957 ms
コンパイル使用メモリ 74,324 KB
実行使用メモリ 63,964 KB
最終ジャッジ日時 2024-09-17 07:55:51
合計ジャッジ時間 10,887 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,056 KB
testcase_01 AC 120 ms
54,068 KB
testcase_02 AC 119 ms
53,792 KB
testcase_03 AC 106 ms
52,960 KB
testcase_04 AC 110 ms
52,772 KB
testcase_05 AC 117 ms
53,976 KB
testcase_06 AC 121 ms
53,884 KB
testcase_07 AC 133 ms
54,108 KB
testcase_08 AC 130 ms
54,168 KB
testcase_09 AC 130 ms
54,240 KB
testcase_10 WA -
testcase_11 AC 130 ms
53,964 KB
testcase_12 AC 138 ms
54,236 KB
testcase_13 WA -
testcase_14 AC 303 ms
59,056 KB
testcase_15 AC 294 ms
58,412 KB
testcase_16 WA -
testcase_17 AC 305 ms
58,812 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 585 ms
59,272 KB
testcase_21 AC 615 ms
60,328 KB
testcase_22 AC 649 ms
63,800 KB
testcase_23 AC 707 ms
63,488 KB
testcase_24 AC 749 ms
63,964 KB
testcase_25 AC 700 ms
63,784 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();
        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