結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー miya145592miya145592
提出日時 2023-08-04 23:20:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 421 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 76,884 KB
最終ジャッジ日時 2024-10-14 21:33:25
合計ジャッジ時間 4,194 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,860 KB
testcase_01 AC 38 ms
52,016 KB
testcase_02 AC 38 ms
52,956 KB
testcase_03 AC 39 ms
52,652 KB
testcase_04 AC 113 ms
76,484 KB
testcase_05 AC 148 ms
76,860 KB
testcase_06 AC 158 ms
76,612 KB
testcase_07 AC 122 ms
76,068 KB
testcase_08 AC 132 ms
76,588 KB
testcase_09 AC 162 ms
76,824 KB
testcase_10 AC 154 ms
76,884 KB
testcase_11 AC 135 ms
76,676 KB
testcase_12 AC 162 ms
76,480 KB
testcase_13 AC 133 ms
76,656 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 39 ms
52,228 KB
testcase_19 AC 52 ms
65,092 KB
testcase_20 AC 49 ms
61,608 KB
testcase_21 AC 50 ms
62,660 KB
testcase_22 AC 52 ms
65,552 KB
testcase_23 AC 49 ms
63,164 KB
testcase_24 AC 54 ms
64,516 KB
testcase_25 AC 50 ms
62,212 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 73 ms
74,888 KB
testcase_29 WA -
testcase_30 AC 57 ms
64,916 KB
testcase_31 AC 74 ms
74,800 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
deg = [0 for _ in range(N)]
indeg = [0 for _ in range(N)]
for _ in range(M):
    u, v = map(int, input().split())
    u-=1
    v-=1
    deg[u] += 1
    indeg[v] += 1
sa = [0 for _ in range(N)]
plus = 0
minus = 0
for i in range(N):
    sa[i] = indeg[i]-deg[i]
    if sa[i]>0:
        plus += sa[i]
    elif sa[i]<0:
        minus += -sa[i]

if plus==0:
    print(0)
else:
    print(plus-1)
0