結果

問題 No.806 木を道に
ユーザー nebukuro09nebukuro09
提出日時 2019-03-22 21:42:55
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 1,062 ms
コンパイル使用メモリ 118,516 KB
実行使用メモリ 14,236 KB
最終ジャッジ日時 2024-06-13 04:24:37
合計ジャッジ時間 3,587 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.string;

immutable long MOD = 10^^9 + 7;

void main() {
    auto N = readln.chomp.to!int;
    auto G = new int[][](N);
    foreach (_; 0..N-1) {
        auto s = readln.split.map!(to!int);
        G[s[0]-1] ~= s[1]-1;
        G[s[1]-1] ~= s[0]-1;
    }

    int ans = 0;
    foreach (i; 0..N) ans += max(0, G[i].length.to!int - 2);
    ans.writeln;
}
0