結果

問題 No.806 木を道に
ユーザー tentententen
提出日時 2023-02-16 09:00:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 1,745 bytes
コンパイル時間 2,574 ms
コンパイル使用メモリ 89,088 KB
実行使用メモリ 46,992 KB
最終ジャッジ日時 2024-07-18 11:24:57
合計ジャッジ時間 8,880 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,180 KB
testcase_01 AC 52 ms
37,148 KB
testcase_02 AC 54 ms
36,940 KB
testcase_03 AC 54 ms
37,144 KB
testcase_04 AC 54 ms
36,920 KB
testcase_05 AC 53 ms
36,988 KB
testcase_06 AC 54 ms
36,888 KB
testcase_07 AC 52 ms
37,188 KB
testcase_08 AC 52 ms
37,032 KB
testcase_09 AC 54 ms
37,184 KB
testcase_10 AC 156 ms
43,452 KB
testcase_11 AC 156 ms
43,452 KB
testcase_12 AC 249 ms
45,932 KB
testcase_13 AC 227 ms
45,384 KB
testcase_14 AC 240 ms
45,840 KB
testcase_15 AC 243 ms
45,936 KB
testcase_16 AC 179 ms
43,716 KB
testcase_17 AC 240 ms
45,784 KB
testcase_18 AC 133 ms
40,360 KB
testcase_19 AC 166 ms
43,380 KB
testcase_20 AC 241 ms
45,952 KB
testcase_21 AC 201 ms
43,812 KB
testcase_22 AC 259 ms
46,828 KB
testcase_23 AC 258 ms
46,708 KB
testcase_24 AC 194 ms
44,040 KB
testcase_25 AC 229 ms
45,256 KB
testcase_26 AC 174 ms
43,624 KB
testcase_27 AC 257 ms
46,992 KB
testcase_28 AC 112 ms
39,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] counts = new int[n];
        for (int i = 0; i < n - 1; i++) {
            counts[sc.nextInt() - 1]++;
            counts[sc.nextInt() - 1]++;
        }
        int ans = 0;
        for (int x : counts) {
            ans += Math.max(0, x - 2);
        }
        System.out.println(ans);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0