結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー bug maker / ばぐめいかー@Python学習者bug maker / ばぐめいかー@Python学習者
提出日時 2023-08-04 23:59:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 566 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 47,872 KB
最終ジャッジ日時 2024-10-14 22:11:38
合計ジャッジ時間 5,268 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 31 ms
10,368 KB
testcase_04 AC 155 ms
27,136 KB
testcase_05 AC 286 ms
42,496 KB
testcase_06 AC 307 ms
44,416 KB
testcase_07 AC 201 ms
31,616 KB
testcase_08 AC 224 ms
34,816 KB
testcase_09 AC 354 ms
47,488 KB
testcase_10 AC 341 ms
47,232 KB
testcase_11 AC 244 ms
37,504 KB
testcase_12 AC 350 ms
47,872 KB
testcase_13 AC 229 ms
35,200 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 51 ms
14,464 KB
testcase_20 AC 34 ms
11,264 KB
testcase_21 AC 40 ms
12,288 KB
testcase_22 AC 48 ms
13,696 KB
testcase_23 AC 49 ms
13,824 KB
testcase_24 AC 45 ms
13,312 KB
testcase_25 AC 45 ms
12,928 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 49 ms
13,696 KB
testcase_29 WA -
testcase_30 AC 40 ms
12,160 KB
testcase_31 AC 52 ms
14,592 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def main():
    N, M = map(int, input().split())
    
    l = [list(map(int, input().split())) for l in range(M)]

    lout = [0] * (N+1)
    lin = [0] * (N+1)
    lans = [0] * (N+1)

    for i in range(M):
        lout[l[i][0]] += 1
        lin[l[i][1]] += 1

    for i in range(1, N + 1):
        lans[i] = lout[i] - lin[i]

    lpos = sum([i for i in lans if i > 0])
    lneg = sum([i for i in lans if i < 0])

    if lpos == -lneg:
        print(lpos - 1)
    else:
        print(-1)

if __name__ == '__main__':
    main()
0