結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー shobonvipshobonvip
提出日時 2023-08-04 21:40:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 411 bytes
コンパイル時間 593 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 85,504 KB
最終ジャッジ日時 2024-04-22 20:02:29
合計ジャッジ時間 4,983 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 119 ms
76,288 KB
testcase_05 AC 158 ms
76,416 KB
testcase_06 AC 166 ms
77,184 KB
testcase_07 AC 128 ms
76,544 KB
testcase_08 AC 138 ms
76,672 KB
testcase_09 AC 173 ms
76,544 KB
testcase_10 AC 163 ms
76,416 KB
testcase_11 AC 147 ms
76,800 KB
testcase_12 AC 170 ms
76,672 KB
testcase_13 AC 146 ms
76,416 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 42 ms
51,712 KB
testcase_19 AC 62 ms
75,008 KB
testcase_20 AC 50 ms
61,440 KB
testcase_21 AC 55 ms
66,560 KB
testcase_22 AC 60 ms
72,832 KB
testcase_23 AC 59 ms
71,552 KB
testcase_24 AC 67 ms
72,192 KB
testcase_25 AC 57 ms
68,864 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 92 ms
81,664 KB
testcase_29 WA -
testcase_30 AC 64 ms
67,968 KB
testcase_31 AC 95 ms
84,992 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int,input().split())
din = [0] * n
dout = [0] * n
for i in range(m):
	u, v = map(int,input().split())
	u -= 1
	v -= 1
	din[v] += 1
	dout[u] += 1

tmp = []
for i in range(n):
	tmp.append(dout[i] - din[i])


tmp.sort()
ans = 998244353

# euler graph
ans = 0
for i in range(n):
	if tmp[i] > 0:
		ans += tmp[i]
#ans = min(ans, tar)

if ans == 0:
	print(0)
	exit()

# jun euler graph
ans -= 1

print(ans)
0