結果
問題 | No.2052 Indegree |
ユーザー |
|
提出日時 | 2024-02-10 20:41:12 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 46 ms / 2,000 ms |
コード長 | 316 bytes |
コンパイル時間 | 460 ms |
コンパイル使用メモリ | 82,568 KB |
実行使用メモリ | 57,676 KB |
最終ジャッジ日時 | 2024-09-28 17:17:24 |
合計ジャッジ時間 | 2,049 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 20 |
ソースコード
from collections import * from itertools import * from functools import * from heapq import * import sys,math input = sys.stdin.readline N,M = map(int,input().split()) ind = [0]*N for _ in range(M): a,b = map(int,input().split()) a -= 1 b -= 1 ind[b] += 1 print(sum(ind[i]==0 for i in range(N)))