結果

問題 No.806 木を道に
ユーザー ameame
提出日時 2019-03-22 21:52:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 720 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 1,915 ms
コンパイル使用メモリ 74,260 KB
実行使用メモリ 53,340 KB
最終ジャッジ日時 2024-09-19 05:14:50
合計ジャッジ時間 14,258 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,328 KB
testcase_01 AC 116 ms
40,300 KB
testcase_02 AC 131 ms
41,292 KB
testcase_03 AC 123 ms
41,376 KB
testcase_04 AC 118 ms
41,192 KB
testcase_05 AC 132 ms
41,740 KB
testcase_06 AC 132 ms
41,480 KB
testcase_07 AC 118 ms
41,820 KB
testcase_08 AC 118 ms
41,040 KB
testcase_09 AC 118 ms
41,052 KB
testcase_10 AC 420 ms
48,092 KB
testcase_11 AC 375 ms
47,824 KB
testcase_12 AC 618 ms
52,224 KB
testcase_13 AC 569 ms
48,216 KB
testcase_14 AC 659 ms
51,748 KB
testcase_15 AC 675 ms
52,468 KB
testcase_16 AC 482 ms
48,324 KB
testcase_17 AC 596 ms
51,668 KB
testcase_18 AC 296 ms
47,440 KB
testcase_19 AC 459 ms
47,920 KB
testcase_20 AC 626 ms
50,316 KB
testcase_21 AC 507 ms
48,080 KB
testcase_22 AC 710 ms
53,340 KB
testcase_23 AC 720 ms
52,844 KB
testcase_24 AC 480 ms
47,952 KB
testcase_25 AC 555 ms
52,432 KB
testcase_26 AC 435 ms
48,048 KB
testcase_27 AC 716 ms
52,880 KB
testcase_28 AC 200 ms
45,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] cnt = new int[n + 1];
        int ans = 0;
        for (int i = 0; i < n - 1; i++) {
            int a = sc.nextInt();
            int b = sc.nextInt();
            if (cnt[a] < 2) {
                cnt[a]++;
            } else {
                ans++;
            }
            if (cnt[b] < 2) {
                cnt[b]++;
            } else {
                ans++;
            }
        }
        System.out.println(ans);
        sc.close();
    }
}
0