結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー Mishan5055Mishan5055
提出日時 2020-02-27 14:12:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,297 bytes
コンパイル時間 2,788 ms
コンパイル使用メモリ 77,148 KB
実行使用メモリ 761,988 KB
最終ジャッジ日時 2024-10-13 15:54:32
合計ジャッジ時間 20,491 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,916 KB
testcase_01 AC 116 ms
54,016 KB
testcase_02 AC 119 ms
54,104 KB
testcase_03 AC 119 ms
52,688 KB
testcase_04 AC 119 ms
54,036 KB
testcase_05 AC 118 ms
54,104 KB
testcase_06 AC 114 ms
53,988 KB
testcase_07 AC 135 ms
54,244 KB
testcase_08 AC 136 ms
54,204 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 133 ms
53,920 KB
testcase_12 AC 136 ms
53,920 KB
testcase_13 AC 1,402 ms
475,612 KB
testcase_14 AC 1,333 ms
473,160 KB
testcase_15 AC 1,287 ms
473,024 KB
testcase_16 AC 1,306 ms
473,332 KB
testcase_17 AC 1,303 ms
471,908 KB
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc=new Scanner(System.in);
        int N=sc.nextInt();
        int[][] ROOT=new int[N][N];
        int[] X=new int[N-1];
        int[] Y=new int[N-1];
        
        for(int i=0;i<N;i++){
            for(int j=0;j<N;j++){
                ROOT[i][j]=0;
            }
            ROOT[i][i]=1;
        }
        
        for(int i=0;i<N-1;i++){
            int tmp_start=sc.nextInt();
            int tmp_goal=sc.nextInt();
            for(int j=0;j<N;j++){
                if(ROOT[tmp_goal][j]==1){
                    ROOT[tmp_start][j]=1;
                }
                if(ROOT[tmp_start][j]==1){
                    ROOT[tmp_goal][j]=1;
                }
                if(ROOT[tmp_start][j]==1){
                    ROOT[j][tmp_start]=1;
                }
                if(ROOT[tmp_goal][j]==1){
                    ROOT[j][tmp_goal]=1;
                }
            }
        }
        
        for(int i=0;i<N;i++){
            for(int j=0;j<N;j++){
                if(ROOT[i][j]==0){
                    System.out.println("Alice");
                    return;
                }
            }
        }
        
        System.out.println("Bob");
        
    }
}
0