結果

問題 No.2052 Indegree
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-08-21 13:28:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 52,760 KB
最終ジャッジ日時 2024-10-10 06:05:14
合計ジャッジ時間 1,827 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
count = [0]*n
for i in range(m):
    a,b = [int(x)-1 for x in input().split()]
    count[b] = 1
print(n-sum(count))
0