結果
| 問題 |
No.2052 Indegree
|
| コンテスト | |
| ユーザー |
ohana
|
| 提出日時 | 2023-10-02 11:34:16 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 43 ms / 2,000 ms |
| コード長 | 155 bytes |
| コンパイル時間 | 264 ms |
| コンパイル使用メモリ | 82,292 KB |
| 実行使用メモリ | 52,480 KB |
| 最終ジャッジ日時 | 2024-07-26 13:41:25 |
| 合計ジャッジ時間 | 1,941 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 20 |
ソースコード
n, m = map(int, input().split())
G = [True for i in range(n)]
for i in range(m):
a, b = map(int, input().split())
G[b - 1] = False
print(sum(G))
ohana