結果

問題 No.2052 Indegree
ユーザー viral8viral8
提出日時 2022-10-01 10:46:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 2,237 ms
コンパイル使用メモリ 73,960 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-06-06 04:05:34
合計ジャッジ時間 6,427 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,644 KB
testcase_01 AC 113 ms
53,680 KB
testcase_02 AC 114 ms
52,620 KB
testcase_03 AC 131 ms
53,996 KB
testcase_04 AC 124 ms
54,152 KB
testcase_05 AC 126 ms
54,192 KB
testcase_06 AC 126 ms
54,196 KB
testcase_07 AC 119 ms
54,048 KB
testcase_08 AC 121 ms
53,956 KB
testcase_09 AC 130 ms
53,992 KB
testcase_10 AC 135 ms
53,804 KB
testcase_11 AC 132 ms
54,128 KB
testcase_12 AC 119 ms
53,860 KB
testcase_13 AC 110 ms
52,984 KB
testcase_14 AC 117 ms
54,108 KB
testcase_15 AC 113 ms
53,984 KB
testcase_16 AC 122 ms
53,880 KB
testcase_17 AC 134 ms
54,136 KB
testcase_18 AC 134 ms
54,028 KB
testcase_19 AC 128 ms
53,956 KB
testcase_20 AC 127 ms
54,208 KB
testcase_21 AC 126 ms
53,928 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