結果

問題 No.806 木を道に
ユーザー htensaihtensai
提出日時 2020-06-10 13:58:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 692 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 77,796 KB
実行使用メモリ 53,124 KB
最終ジャッジ日時 2024-06-23 04:00:16
合計ジャッジ時間 13,922 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,724 KB
testcase_01 AC 101 ms
41,588 KB
testcase_02 AC 117 ms
41,964 KB
testcase_03 AC 118 ms
41,964 KB
testcase_04 AC 114 ms
41,728 KB
testcase_05 AC 123 ms
41,580 KB
testcase_06 AC 122 ms
41,892 KB
testcase_07 AC 112 ms
41,432 KB
testcase_08 AC 115 ms
41,516 KB
testcase_09 AC 117 ms
41,444 KB
testcase_10 AC 387 ms
48,064 KB
testcase_11 AC 361 ms
48,036 KB
testcase_12 AC 637 ms
52,436 KB
testcase_13 AC 575 ms
48,424 KB
testcase_14 AC 587 ms
50,504 KB
testcase_15 AC 611 ms
52,508 KB
testcase_16 AC 419 ms
48,376 KB
testcase_17 AC 520 ms
51,456 KB
testcase_18 AC 263 ms
47,548 KB
testcase_19 AC 396 ms
48,364 KB
testcase_20 AC 587 ms
49,700 KB
testcase_21 AC 464 ms
48,536 KB
testcase_22 AC 692 ms
53,124 KB
testcase_23 AC 582 ms
52,700 KB
testcase_24 AC 464 ms
48,308 KB
testcase_25 AC 513 ms
52,492 KB
testcase_26 AC 419 ms
48,084 KB
testcase_27 AC 631 ms
52,968 KB
testcase_28 AC 195 ms
45,688 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[] counts = new int[n];
		for (int i = 0; i < n - 1; i++) {
		    int a = sc.nextInt() - 1;
		    int b = sc.nextInt() - 1;
		    counts[a]++;
		    counts[b]++;
		}
		int total = 0;
		for (int x : counts) {
		    if (x > 2) {
		        total += x - 2;
		    }
		}
		System.out.println(total);
	}
}
0