結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー 👑 rin204rin204
提出日時 2023-08-04 22:18:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 260 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 76,648 KB
最終ジャッジ日時 2024-10-14 20:17:42
合計ジャッジ時間 4,174 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 AC 113 ms
76,032 KB
testcase_05 AC 146 ms
76,288 KB
testcase_06 AC 153 ms
76,384 KB
testcase_07 AC 116 ms
75,904 KB
testcase_08 AC 128 ms
76,204 KB
testcase_09 AC 157 ms
76,288 KB
testcase_10 AC 149 ms
76,288 KB
testcase_11 AC 131 ms
76,248 KB
testcase_12 AC 159 ms
75,972 KB
testcase_13 AC 128 ms
76,648 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 39 ms
51,584 KB
testcase_19 AC 49 ms
62,052 KB
testcase_20 AC 47 ms
59,776 KB
testcase_21 AC 47 ms
60,672 KB
testcase_22 AC 48 ms
62,208 KB
testcase_23 AC 48 ms
61,184 KB
testcase_24 AC 50 ms
61,568 KB
testcase_25 AC 47 ms
60,544 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 69 ms
71,424 KB
testcase_29 WA -
testcase_30 AC 52 ms
61,440 KB
testcase_31 AC 70 ms
71,040 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
in_ = [0] * n
out_ = [0] * n

for _ in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    in_[v] += 1
    out_[u] += 1

tot = 0
for i, o in zip(in_, out_):
    tot += max(0, i - o)

print(max(0, tot - 1))
0