結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー gr1msl3ygr1msl3y
提出日時 2023-08-13 13:12:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 218 bytes
コンパイル時間 973 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 77,004 KB
最終ジャッジ日時 2024-11-21 08:30:55
合計ジャッジ時間 6,196 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,616 KB
testcase_01 AC 36 ms
52,692 KB
testcase_02 AC 36 ms
52,980 KB
testcase_03 AC 37 ms
52,464 KB
testcase_04 AC 106 ms
76,112 KB
testcase_05 AC 145 ms
76,352 KB
testcase_06 AC 152 ms
76,568 KB
testcase_07 AC 119 ms
76,644 KB
testcase_08 AC 126 ms
76,448 KB
testcase_09 AC 155 ms
76,884 KB
testcase_10 AC 149 ms
76,516 KB
testcase_11 AC 134 ms
76,504 KB
testcase_12 AC 155 ms
76,324 KB
testcase_13 AC 132 ms
76,308 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 38 ms
52,596 KB
testcase_19 AC 49 ms
66,096 KB
testcase_20 AC 43 ms
60,060 KB
testcase_21 AC 45 ms
62,456 KB
testcase_22 AC 47 ms
65,428 KB
testcase_23 AC 48 ms
65,684 KB
testcase_24 AC 53 ms
67,084 KB
testcase_25 AC 47 ms
64,948 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 73 ms
75,796 KB
testcase_29 WA -
testcase_30 AC 53 ms
65,268 KB
testcase_31 AC 73 ms
76,828 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
g0 = [0]*(N+1)
g1 = [0]*(N+1)
for _ in range(K):
    a, b = map(int, input().split())
    g0[a] += 1
    g1[b] += 1

ans = max(sum(abs(a-b) for a, b in zip(g0, g1))//2-1, 0)
print(ans)
0