結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー mino_yellowmino_yellow
提出日時 2022-11-16 01:14:16
言語 PHP
(8.3.4)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 32,528 KB
実行使用メモリ 59,440 KB
最終ジャッジ日時 2024-09-16 23:41:47
合計ジャッジ時間 3,392 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
30,900 KB
testcase_01 AC 43 ms
31,288 KB
testcase_02 AC 48 ms
30,872 KB
testcase_03 AC 42 ms
30,960 KB
testcase_04 AC 41 ms
31,000 KB
testcase_05 AC 40 ms
30,864 KB
testcase_06 AC 40 ms
30,940 KB
testcase_07 AC 41 ms
31,140 KB
testcase_08 AC 42 ms
30,800 KB
testcase_09 AC 42 ms
31,012 KB
testcase_10 AC 42 ms
31,020 KB
testcase_11 AC 44 ms
30,924 KB
testcase_12 AC 42 ms
30,888 KB
testcase_13 AC 49 ms
33,292 KB
testcase_14 AC 50 ms
33,804 KB
testcase_15 AC 50 ms
33,804 KB
testcase_16 AC 48 ms
33,548 KB
testcase_17 AC 49 ms
35,468 KB
testcase_18 AC 64 ms
39,052 KB
testcase_19 AC 72 ms
45,584 KB
testcase_20 AC 73 ms
46,224 KB
testcase_21 AC 95 ms
52,264 KB
testcase_22 AC 116 ms
58,084 KB
testcase_23 AC 158 ms
59,440 KB
testcase_24 AC 149 ms
59,180 KB
testcase_25 AC 153 ms
59,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
fscanf(STDIN,"%d",$N);
$cnt = array_fill(0,$N,0);
for($i=0;$i<$N-1;++$i){
    fscanf(STDIN,"%d%d",$a,$b);
    $d[$a][] = $b;
    $d[$b][] = $a;
    $cnt[$a]++;
    $cnt[$b]++;
}
$memo = array_fill(0,$N,false);
run($b);
$sum = array_sum($memo);
if($sum < $N-1){
    echo "Alice" . PHP_EOL;
}elseif($sum == $N-1){
    $two = 0;
    for($i=0;$i<$N;++$i) if($cnt[$i]==2) ++$two;
    if($two == $N-1) echo "Bob" . PHP_EOL;
    else echo "Alice" . PHP_EOL;
}else{
    echo "Bob" . PHP_EOL;
}
function run($now){
    global $memo,$d;
    if($memo[$now]) return;
    $memo[$now] = true;
    foreach($d[$now] as $to) run($to);
}


?>
0