結果

問題 No.2052 Indegree
ユーザー viral8viral8
提出日時 2022-10-01 10:49:49
言語 Java
(openjdk 23)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 2,362 ms
コンパイル使用メモリ 76,372 KB
実行使用メモリ 42,016 KB
最終ジャッジ日時 2024-12-23 15:21:21
合計ジャッジ時間 6,398 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,560 KB
testcase_01 AC 142 ms
41,440 KB
testcase_02 AC 146 ms
41,212 KB
testcase_03 AC 148 ms
41,796 KB
testcase_04 AC 146 ms
41,984 KB
testcase_05 AC 152 ms
41,716 KB
testcase_06 AC 149 ms
41,288 KB
testcase_07 AC 146 ms
41,536 KB
testcase_08 AC 148 ms
41,868 KB
testcase_09 AC 156 ms
41,440 KB
testcase_10 AC 148 ms
41,920 KB
testcase_11 AC 150 ms
42,016 KB
testcase_12 AC 143 ms
41,588 KB
testcase_13 AC 145 ms
41,480 KB
testcase_14 AC 145 ms
41,340 KB
testcase_15 AC 141 ms
41,992 KB
testcase_16 AC 150 ms
41,540 KB
testcase_17 AC 160 ms
41,632 KB
testcase_18 AC 162 ms
41,428 KB
testcase_19 AC 154 ms
41,436 KB
testcase_20 AC 154 ms
41,536 KB
testcase_21 AC 151 ms
41,768 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