結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー rlangevinrlangevin
提出日時 2023-08-06 17:46:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 287 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 76,140 KB
最終ジャッジ日時 2024-11-06 20:44:00
合計ジャッジ時間 4,171 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 78 ms
75,776 KB
testcase_05 AC 97 ms
75,520 KB
testcase_06 AC 102 ms
76,080 KB
testcase_07 AC 77 ms
76,140 KB
testcase_08 AC 82 ms
75,568 KB
testcase_09 AC 99 ms
75,904 KB
testcase_10 AC 95 ms
75,904 KB
testcase_11 AC 83 ms
75,624 KB
testcase_12 AC 93 ms
75,948 KB
testcase_13 AC 80 ms
75,824 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 39 ms
52,224 KB
testcase_19 AC 46 ms
60,672 KB
testcase_20 AC 44 ms
58,880 KB
testcase_21 AC 45 ms
59,520 KB
testcase_22 AC 47 ms
60,928 KB
testcase_23 AC 48 ms
60,800 KB
testcase_24 AC 51 ms
60,672 KB
testcase_25 AC 46 ms
59,648 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 53 ms
64,512 KB
testcase_29 WA -
testcase_30 AC 46 ms
59,904 KB
testcase_31 AC 52 ms
64,768 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M = map(int, input().split())
S, T = [0] * N, [0] * N
for i in range(M):
    u, v = map(int, input().split())
    u, v = u - 1, v - 1
    S[u] += 1
    T[v] += 1
    
ans = 0
for i in range(N):
    ans += max(0, S[i] - T[i])
print(max(0, ans-1))
0