結果
| 問題 | No.2052 Indegree |
| コンテスト | |
| ユーザー |
ohana
|
| 提出日時 | 2023-10-02 11:33:29 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
RE
不安定
|
| 実行時間 | - |
| コード長 | 151 bytes |
| 記録 | |
| コンパイル時間 | 258 ms |
| コンパイル使用メモリ | 96,108 KB |
| 実行使用メモリ | 93,952 KB |
| 最終ジャッジ日時 | 2026-08-24 11:04:27 |
| 合計ジャッジ時間 | 5,171 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 RE * 1 |
| other | AC * 7 RE * 13 |
ソースコード
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] = False
print(sum(G))
ohana