結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー lloyzlloyz
提出日時 2023-08-05 14:20:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 231 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 76,464 KB
最終ジャッジ日時 2024-10-15 11:24:47
合計ジャッジ時間 4,362 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 106 ms
75,904 KB
testcase_05 AC 140 ms
75,848 KB
testcase_06 AC 145 ms
76,464 KB
testcase_07 AC 115 ms
75,904 KB
testcase_08 AC 121 ms
76,416 KB
testcase_09 AC 152 ms
76,100 KB
testcase_10 AC 149 ms
76,328 KB
testcase_11 AC 127 ms
75,976 KB
testcase_12 AC 152 ms
76,328 KB
testcase_13 AC 128 ms
76,160 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 45 ms
59,776 KB
testcase_20 AC 44 ms
59,008 KB
testcase_21 AC 46 ms
59,264 KB
testcase_22 AC 45 ms
59,648 KB
testcase_23 AC 43 ms
59,264 KB
testcase_24 AC 48 ms
60,672 KB
testcase_25 AC 45 ms
59,008 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 67 ms
69,504 KB
testcase_29 WA -
testcase_30 AC 51 ms
61,184 KB
testcase_31 AC 66 ms
69,632 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
C = [0 for _ in range(n)]
for _ in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    C[u] -= 1
    C[v] += 1
ans = 0
for i in range(n):
    ans += max(C[i], 0)
print(ans - 1)
0