結果

問題 No.806 木を道に
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-24 08:58:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 749 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 3,322 ms
コンパイル使用メモリ 83,444 KB
実行使用メモリ 63,848 KB
最終ジャッジ日時 2024-10-13 14:59:59
合計ジャッジ時間 15,772 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,688 KB
testcase_01 AC 116 ms
52,736 KB
testcase_02 AC 137 ms
53,796 KB
testcase_03 AC 136 ms
54,032 KB
testcase_04 AC 114 ms
52,752 KB
testcase_05 AC 137 ms
53,848 KB
testcase_06 AC 137 ms
54,048 KB
testcase_07 AC 132 ms
53,804 KB
testcase_08 AC 126 ms
53,992 KB
testcase_09 AC 127 ms
53,648 KB
testcase_10 AC 424 ms
59,332 KB
testcase_11 AC 392 ms
59,180 KB
testcase_12 AC 684 ms
63,524 KB
testcase_13 AC 530 ms
58,976 KB
testcase_14 AC 675 ms
62,644 KB
testcase_15 AC 707 ms
62,544 KB
testcase_16 AC 486 ms
59,352 KB
testcase_17 AC 663 ms
61,164 KB
testcase_18 AC 302 ms
58,604 KB
testcase_19 AC 461 ms
58,984 KB
testcase_20 AC 641 ms
61,472 KB
testcase_21 AC 549 ms
59,288 KB
testcase_22 AC 699 ms
63,848 KB
testcase_23 AC 749 ms
63,696 KB
testcase_24 AC 528 ms
59,044 KB
testcase_25 AC 546 ms
63,384 KB
testcase_26 AC 452 ms
59,028 KB
testcase_27 AC 721 ms
63,456 KB
testcase_28 AC 215 ms
57,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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