結果

問題 No.806 木を道に
ユーザー しめはじめしめはじめ
提出日時 2019-05-29 10:03:34
言語 PHP
(8.3.4)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 563 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 32,404 KB
実行使用メモリ 38,456 KB
最終ジャッジ日時 2024-09-17 15:58:18
合計ジャッジ時間 3,084 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
32,660 KB
testcase_01 AC 37 ms
32,400 KB
testcase_02 AC 36 ms
32,528 KB
testcase_03 AC 36 ms
32,400 KB
testcase_04 AC 36 ms
32,528 KB
testcase_05 AC 40 ms
32,400 KB
testcase_06 AC 37 ms
32,528 KB
testcase_07 AC 37 ms
32,528 KB
testcase_08 AC 37 ms
32,528 KB
testcase_09 AC 39 ms
32,532 KB
testcase_10 AC 51 ms
32,532 KB
testcase_11 AC 49 ms
32,528 KB
testcase_12 AC 83 ms
36,540 KB
testcase_13 AC 71 ms
36,412 KB
testcase_14 AC 83 ms
36,664 KB
testcase_15 AC 85 ms
36,408 KB
testcase_16 AC 56 ms
34,488 KB
testcase_17 AC 77 ms
36,668 KB
testcase_18 AC 41 ms
32,272 KB
testcase_19 AC 49 ms
34,360 KB
testcase_20 AC 76 ms
36,664 KB
testcase_21 AC 59 ms
34,236 KB
testcase_22 AC 90 ms
38,328 KB
testcase_23 AC 90 ms
38,456 KB
testcase_24 AC 61 ms
32,340 KB
testcase_25 AC 74 ms
34,620 KB
testcase_26 AC 53 ms
34,364 KB
testcase_27 AC 89 ms
38,456 KB
testcase_28 AC 39 ms
32,528 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    $n = trim(fgets(STDIN));
    $node = array();
    $target= array();
    for( $i = 1; $i <= $n; $i++ ){
        $node[$i] = 0;
    }
    $ans = 0;
    for( $i = 0; $i < ( $n - 1 ); $i++ ){
        list( $a, $b ) = sscanf( trim(fgets(STDIN)), "%d %d" );
        $node[$a]++;
        $node[$b]++;
        if ( $node[$a] > 2 ){
            $target[] = $a;
        }
        if ( $node[$b] > 2 ){
            $target[] = $b;
        }
    }
    $target = array_unique( $target );
	foreach( $target as $v ){
        $ans += $node[$v] - 2;
	}
	print $ans."\n";
0