結果

問題 No.2052 Indegree
ユーザー viral8viral8
提出日時 2022-10-01 10:49:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 1,808 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-06-06 04:07:46
合計ジャッジ時間 5,466 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,908 KB
testcase_01 AC 104 ms
52,932 KB
testcase_02 AC 114 ms
53,792 KB
testcase_03 AC 121 ms
54,204 KB
testcase_04 AC 118 ms
53,916 KB
testcase_05 AC 128 ms
54,244 KB
testcase_06 AC 122 ms
53,992 KB
testcase_07 AC 118 ms
54,156 KB
testcase_08 AC 120 ms
54,104 KB
testcase_09 AC 125 ms
54,156 KB
testcase_10 AC 117 ms
53,996 KB
testcase_11 AC 122 ms
54,200 KB
testcase_12 AC 114 ms
53,816 KB
testcase_13 AC 120 ms
53,960 KB
testcase_14 AC 136 ms
54,388 KB
testcase_15 AC 133 ms
53,832 KB
testcase_16 AC 118 ms
54,024 KB
testcase_17 AC 121 ms
53,988 KB
testcase_18 AC 125 ms
54,056 KB
testcase_19 AC 123 ms
53,856 KB
testcase_20 AC 128 ms
54,128 KB
testcase_21 AC 124 ms
54,192 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 M = sc.nextInt();
        int[] ind = new int[N];
        int ans = N;
        while(M-->0){
            sc.next();
            int B = sc.nextInt()-1;
            if(ind[B]++==0)
                --ans;
        }
        System.out.println(ans);
    }
}
0