結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー hiryuNhiryuN
提出日時 2023-08-04 21:59:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 218 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 99,456 KB
最終ジャッジ日時 2024-10-14 19:56:12
合計ジャッジ時間 4,389 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 40 ms
51,456 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 122 ms
76,544 KB
testcase_05 AC 168 ms
77,056 KB
testcase_06 AC 177 ms
77,952 KB
testcase_07 AC 135 ms
76,928 KB
testcase_08 AC 147 ms
77,056 KB
testcase_09 AC 180 ms
77,568 KB
testcase_10 AC 177 ms
77,056 KB
testcase_11 AC 163 ms
77,184 KB
testcase_12 AC 182 ms
77,312 KB
testcase_13 AC 151 ms
77,312 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 70 ms
83,968 KB
testcase_20 AC 52 ms
63,488 KB
testcase_21 AC 59 ms
71,936 KB
testcase_22 AC 67 ms
81,152 KB
testcase_23 AC 63 ms
79,744 KB
testcase_24 AC 68 ms
78,464 KB
testcase_25 AC 60 ms
75,008 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 104 ms
94,208 KB
testcase_29 WA -
testcase_30 AC 62 ms
71,296 KB
testcase_31 AC 113 ms
99,328 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
X=[None]
for i in range(n):
	X.append([0,0])
for i in range(m):
	a,b=map(int,input().split())
	X[a][0]+=1
	X[b][1]+=1
ans=0
for i in range(1,n+1):
	ans+=abs(X[i][0]-X[i][1])
print(ans//2-1)
0