結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー mino_yellowmino_yellow
提出日時 2022-11-16 01:03:08
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 385 bytes
コンパイル時間 1,362 ms
コンパイル使用メモリ 32,404 KB
実行使用メモリ 59,192 KB
最終ジャッジ日時 2024-09-16 23:28:14
合計ジャッジ時間 4,960 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
32,272 KB
testcase_01 AC 41 ms
32,404 KB
testcase_02 AC 41 ms
32,404 KB
testcase_03 AC 41 ms
32,528 KB
testcase_04 AC 41 ms
32,400 KB
testcase_05 AC 40 ms
32,400 KB
testcase_06 AC 41 ms
32,528 KB
testcase_07 AC 41 ms
32,528 KB
testcase_08 AC 40 ms
32,528 KB
testcase_09 AC 41 ms
32,272 KB
testcase_10 WA -
testcase_11 AC 41 ms
32,404 KB
testcase_12 AC 41 ms
32,404 KB
testcase_13 AC 48 ms
34,488 KB
testcase_14 AC 47 ms
34,364 KB
testcase_15 AC 48 ms
34,492 KB
testcase_16 AC 47 ms
34,616 KB
testcase_17 AC 49 ms
36,664 KB
testcase_18 AC 65 ms
40,508 KB
testcase_19 WA -
testcase_20 AC 71 ms
46,648 KB
testcase_21 AC 89 ms
54,968 KB
testcase_22 AC 104 ms
59,192 KB
testcase_23 AC 151 ms
59,120 KB
testcase_24 AC 138 ms
58,992 KB
testcase_25 AC 148 ms
58,996 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
fscanf(STDIN,"%d",$N);
for($i=0;$i<$N-1;++$i){
    fscanf(STDIN,"%d%d",$a,$b);
    $d[$a][] = $b;
    $d[$b][] = $a;
}
$memo = array_fill(0,$N,false);
run($b);
if(array_sum($memo) <= $N-1) 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