結果

問題 No.2052 Indegree
ユーザー viral8viral8
提出日時 2022-10-01 10:46:03
言語 Java
(openjdk 23)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 1,897 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 54,328 KB
最終ジャッジ日時 2024-12-23 15:19:05
合計ジャッジ時間 5,989 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
52,720 KB
testcase_01 AC 105 ms
52,964 KB
testcase_02 AC 121 ms
53,976 KB
testcase_03 AC 131 ms
54,260 KB
testcase_04 AC 124 ms
54,020 KB
testcase_05 AC 129 ms
54,156 KB
testcase_06 AC 131 ms
53,844 KB
testcase_07 AC 123 ms
53,472 KB
testcase_08 AC 132 ms
54,204 KB
testcase_09 AC 125 ms
53,680 KB
testcase_10 AC 123 ms
54,096 KB
testcase_11 AC 128 ms
54,108 KB
testcase_12 AC 124 ms
54,052 KB
testcase_13 AC 147 ms
54,180 KB
testcase_14 AC 142 ms
53,896 KB
testcase_15 AC 144 ms
54,064 KB
testcase_16 AC 151 ms
54,228 KB
testcase_17 AC 156 ms
54,008 KB
testcase_18 AC 151 ms
54,312 KB
testcase_19 AC 152 ms
54,020 KB
testcase_20 AC 154 ms
54,048 KB
testcase_21 AC 178 ms
54,328 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();
        boolean[] ind = new boolean[N+1];
        int ans = N;
        while(M-->0){
            sc.next();
            int B = sc.nextInt();
            if(!ind[B]){
                ind[B] = true;
                --ans;
            }
        }
        System.out.println(ans);
    }
}
0