結果

問題 No.2427 Tree Distance Two
ユーザー tentententen
提出日時 2024-07-31 13:25:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,366 ms / 2,000 ms
コード長 1,692 bytes
コンパイル時間 2,653 ms
コンパイル使用メモリ 84,156 KB
実行使用メモリ 135,244 KB
最終ジャッジ日時 2024-07-31 13:26:16
合計ジャッジ時間 29,690 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
51,248 KB
testcase_01 AC 63 ms
51,316 KB
testcase_02 AC 64 ms
51,160 KB
testcase_03 AC 1,316 ms
128,388 KB
testcase_04 AC 64 ms
50,988 KB
testcase_05 AC 1,343 ms
128,328 KB
testcase_06 AC 65 ms
51,292 KB
testcase_07 AC 1,366 ms
135,244 KB
testcase_08 AC 1,349 ms
133,308 KB
testcase_09 AC 1,033 ms
132,376 KB
testcase_10 AC 1,169 ms
132,116 KB
testcase_11 AC 1,192 ms
134,916 KB
testcase_12 AC 1,110 ms
132,884 KB
testcase_13 AC 1,138 ms
130,336 KB
testcase_14 AC 899 ms
124,716 KB
testcase_15 AC 67 ms
51,108 KB
testcase_16 AC 72 ms
51,428 KB
testcase_17 AC 67 ms
51,296 KB
testcase_18 AC 69 ms
51,272 KB
testcase_19 AC 67 ms
51,284 KB
testcase_20 AC 209 ms
58,092 KB
testcase_21 AC 212 ms
58,176 KB
testcase_22 AC 165 ms
55,276 KB
testcase_23 AC 139 ms
52,188 KB
testcase_24 AC 202 ms
56,564 KB
testcase_25 AC 563 ms
76,064 KB
testcase_26 AC 1,161 ms
103,104 KB
testcase_27 AC 764 ms
89,144 KB
testcase_28 AC 1,256 ms
124,664 KB
testcase_29 AC 1,293 ms
120,000 KB
testcase_30 AC 906 ms
97,572 KB
testcase_31 AC 762 ms
86,240 KB
testcase_32 AC 862 ms
97,236 KB
testcase_33 AC 848 ms
94,620 KB
testcase_34 AC 398 ms
66,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        List<List<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);
        }
        String result = graph.stream()
            .mapToInt(x -> x.stream().mapToInt(y -> graph.get(y).size() - 1).sum())
            .mapToObj(String::valueOf)
            .collect(Collectors.joining("\n"));
        System.out.println(result);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0