結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー ああいいああいい
提出日時 2023-08-05 17:23:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 473 bytes
コンパイル時間 652 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-10-15 14:24:34
合計ジャッジ時間 5,002 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 108 ms
75,904 KB
testcase_05 AC 137 ms
76,416 KB
testcase_06 AC 144 ms
76,288 KB
testcase_07 AC 126 ms
76,288 KB
testcase_08 AC 126 ms
76,416 KB
testcase_09 AC 150 ms
76,032 KB
testcase_10 AC 147 ms
76,544 KB
testcase_11 AC 130 ms
76,288 KB
testcase_12 AC 149 ms
76,032 KB
testcase_13 AC 130 ms
76,160 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 40 ms
51,840 KB
testcase_19 AC 47 ms
61,184 KB
testcase_20 AC 44 ms
59,008 KB
testcase_21 AC 46 ms
60,032 KB
testcase_22 AC 49 ms
60,672 KB
testcase_23 AC 46 ms
60,544 KB
testcase_24 AC 48 ms
60,288 KB
testcase_25 AC 46 ms
60,288 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 70 ms
69,504 KB
testcase_29 WA -
testcase_30 AC 51 ms
60,672 KB
testcase_31 AC 68 ms
69,248 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
Gnum = [0] * (N + 1)

for _ in range(M):
    u,v = map(int,input().split())
    Gnum[u] -= 1
    Gnum[v] += 1
    
a = 0
b = 0
p = 0
q = 0
for i in range(1,N + 1):
    if Gnum[i] == 1:
        if a == 0:a = 1
        else:
            p += 1
    elif Gnum[i] == -1:
        if b == 0:b = 1
        else:
            q += 1
    elif Gnum[i] == 0:
        pass
    elif Gnum[i] > 0:
        p += Gnum[i]
    else:
        q -= Gnum[i]
print(p)
0