結果

問題 No.806 木を道に
ユーザー tentententen
提出日時 2020-11-18 14:01:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,043 ms / 2,000 ms
コード長 677 bytes
コンパイル時間 2,439 ms
コンパイル使用メモリ 76,040 KB
実行使用メモリ 79,740 KB
最終ジャッジ日時 2024-07-23 09:01:46
合計ジャッジ時間 18,922 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,332 KB
testcase_01 AC 136 ms
54,060 KB
testcase_02 AC 143 ms
54,112 KB
testcase_03 AC 144 ms
54,100 KB
testcase_04 AC 134 ms
54,000 KB
testcase_05 AC 149 ms
54,200 KB
testcase_06 AC 144 ms
54,384 KB
testcase_07 AC 134 ms
54,008 KB
testcase_08 AC 133 ms
54,268 KB
testcase_09 AC 134 ms
54,064 KB
testcase_10 AC 526 ms
61,524 KB
testcase_11 AC 486 ms
61,620 KB
testcase_12 AC 996 ms
75,528 KB
testcase_13 AC 809 ms
66,264 KB
testcase_14 AC 928 ms
74,376 KB
testcase_15 AC 972 ms
75,496 KB
testcase_16 AC 558 ms
61,600 KB
testcase_17 AC 817 ms
70,276 KB
testcase_18 AC 308 ms
58,660 KB
testcase_19 AC 516 ms
61,508 KB
testcase_20 AC 872 ms
68,816 KB
testcase_21 AC 695 ms
63,760 KB
testcase_22 AC 990 ms
79,740 KB
testcase_23 AC 1,043 ms
79,536 KB
testcase_24 AC 564 ms
66,248 KB
testcase_25 AC 724 ms
74,544 KB
testcase_26 AC 508 ms
61,524 KB
testcase_27 AC 912 ms
78,348 KB
testcase_28 AC 238 ms
57,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            graph.add(new ArrayList<>());
        }
        for (int i = 0; i < n - 1; i++) {
            int a = sc.nextInt() - 1;
            int b = sc.nextInt() - 1;
            graph.get(a).add(b);
            graph.get(b).add(a);
        }
        int ans = 0;
        for(ArrayList<Integer> node : graph) {
            ans += Math.max(0, node.size() - 2);
        }
        System.out.println(ans);
    }
}
0