結果

問題 No.2052 Indegree
ユーザー ks2mks2m
提出日時 2022-08-21 12:50:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 2,072 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 41,716 KB
最終ジャッジ日時 2024-10-10 05:51:39
合計ジャッジ時間 6,263 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,012 KB
testcase_01 AC 123 ms
40,180 KB
testcase_02 AC 142 ms
41,340 KB
testcase_03 AC 152 ms
41,256 KB
testcase_04 AC 146 ms
41,300 KB
testcase_05 AC 147 ms
41,500 KB
testcase_06 AC 150 ms
41,436 KB
testcase_07 AC 143 ms
40,996 KB
testcase_08 AC 154 ms
41,272 KB
testcase_09 AC 153 ms
41,580 KB
testcase_10 AC 147 ms
41,428 KB
testcase_11 AC 152 ms
41,572 KB
testcase_12 AC 128 ms
40,376 KB
testcase_13 AC 144 ms
41,520 KB
testcase_14 AC 142 ms
41,280 KB
testcase_15 AC 139 ms
41,452 KB
testcase_16 AC 142 ms
41,532 KB
testcase_17 AC 154 ms
41,396 KB
testcase_18 AC 152 ms
41,516 KB
testcase_19 AC 155 ms
41,520 KB
testcase_20 AC 153 ms
41,716 KB
testcase_21 AC 160 ms
41,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int[] c = new int[n];
		for (int i = 0; i < m; i++) {
			sc.nextInt();
			int b = sc.nextInt() - 1;
			c[b]++;
		}
		sc.close();

		int ans = 0;
		for (int i = 0; i < c.length; i++) {
			if (c[i] == 0) {
				ans++;
			}
		}
		System.out.println(ans);
	}
}
0