結果

問題 No.1813 Magical Stones
ユーザー ああいいああいい
提出日時 2022-01-14 22:46:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 675 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,768 KB
実行使用メモリ 78,424 KB
最終ジャッジ日時 2024-11-20 13:11:56
合計ジャッジ時間 6,584 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,908 KB
testcase_01 AC 40 ms
52,940 KB
testcase_02 AC 39 ms
52,068 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 41 ms
52,216 KB
testcase_08 AC 48 ms
59,620 KB
testcase_09 WA -
testcase_10 AC 42 ms
53,948 KB
testcase_11 WA -
testcase_12 AC 42 ms
52,948 KB
testcase_13 AC 41 ms
52,968 KB
testcase_14 AC 45 ms
59,540 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 189 ms
78,144 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 191 ms
78,020 KB
testcase_21 AC 195 ms
77,528 KB
testcase_22 AC 194 ms
77,800 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 85 ms
76,380 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 40 ms
52,524 KB
testcase_33 AC 42 ms
52,200 KB
testcase_34 AC 70 ms
71,664 KB
testcase_35 AC 86 ms
76,236 KB
testcase_36 AC 71 ms
71,344 KB
testcase_37 AC 103 ms
76,248 KB
testcase_38 AC 78 ms
74,892 KB
testcase_39 AC 143 ms
77,296 KB
testcase_40 AC 71 ms
71,456 KB
testcase_41 AC 70 ms
73,580 KB
testcase_42 AC 86 ms
76,156 KB
testcase_43 AC 80 ms
75,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())

"""
parent = list(range(N+1))
import sys

sys.setrecursionlimit(10 ** 8)
def find(i):
    if parent[i] == i:return i
    parent[i] = find(parent[i])
    return parent[i]
def unite(i,j):
    I = find(i)
    J = find(j)
    if I == J:return False
    parent[I] = J
    parent[i] = J
    return True
for _ in range(M):
    a,b = map(int,input().split())
    unite(a,b)
ans = 0
"""
G = [0] * (N+1)
rG = [0] * (N + 1)
for _ in range(M):
    a,b = map(int,input().split())
    G[a] += 1
    rG[b] += 1
count1 = 0
count2 = 0
for i in range(1,N+1):
    if G[i] == 0:
        count1 += 1
    if rG[i] == 0:
        count2 += 1
print(max(count1,count2))
0