結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー C_nena_EC_nena_E
提出日時 2020-01-31 22:04:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 752 bytes
コンパイル時間 1,977 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 64,588 KB
最終ジャッジ日時 2024-09-17 08:18:58
合計ジャッジ時間 10,846 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,128 KB
testcase_01 AC 113 ms
41,356 KB
testcase_02 AC 113 ms
41,196 KB
testcase_03 AC 104 ms
39,776 KB
testcase_04 AC 124 ms
41,592 KB
testcase_05 AC 122 ms
41,080 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 130 ms
41,440 KB
testcase_09 AC 128 ms
41,640 KB
testcase_10 AC 132 ms
41,648 KB
testcase_11 AC 128 ms
41,864 KB
testcase_12 AC 136 ms
41,588 KB
testcase_13 WA -
testcase_14 AC 320 ms
47,704 KB
testcase_15 AC 284 ms
47,912 KB
testcase_16 WA -
testcase_17 AC 314 ms
48,120 KB
testcase_18 WA -
testcase_19 AC 468 ms
48,184 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 671 ms
54,196 KB
testcase_24 AC 700 ms
52,924 KB
testcase_25 AC 688 ms
53,792 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()]++;
        }
        int cnt1 = 0;
        int cnt0 = 0;
        for(int i = 0; i < N; i++){
            if(map[i] == 1){
                cnt1++;
            }
            if(map[i] == 0){
                cnt0++;
            }
        }
        if(cnt0 == 0 || (cnt0 == 1 && cnt1 == 0)){
            System.out.println("Bob");
        }else{
            System.out.println("Alice");
        }
    }
}
0