結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー ikomaikoma
提出日時 2023-08-04 21:58:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 213 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-10-14 19:55:04
合計ジャッジ時間 3,278 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 74 ms
75,868 KB
testcase_05 AC 92 ms
75,560 KB
testcase_06 AC 90 ms
76,288 KB
testcase_07 AC 78 ms
75,784 KB
testcase_08 AC 81 ms
75,520 KB
testcase_09 AC 95 ms
75,648 KB
testcase_10 AC 95 ms
75,696 KB
testcase_11 AC 86 ms
75,776 KB
testcase_12 AC 95 ms
75,776 KB
testcase_13 AC 84 ms
75,976 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 44 ms
60,160 KB
testcase_20 AC 43 ms
58,112 KB
testcase_21 AC 43 ms
58,368 KB
testcase_22 AC 42 ms
60,160 KB
testcase_23 AC 43 ms
59,780 KB
testcase_24 AC 46 ms
59,904 KB
testcase_25 AC 43 ms
59,264 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 53 ms
64,512 KB
testcase_29 WA -
testcase_30 AC 46 ms
60,416 KB
testcase_31 AC 54 ms
65,408 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

dif = [0]*N
for _ in range(M):
    u,v=map(lambda x:int(x)-1,input().split())
    dif[u]+=1
    dif[v]-=1
print(sum([abs(d) for d in dif])//2-1)
0