結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー ニックネームニックネーム
提出日時 2023-08-04 21:50:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 212 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-10-14 19:47:36
合計ジャッジ時間 7,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 285 ms
10,624 KB
testcase_05 AC 516 ms
10,880 KB
testcase_06 AC 555 ms
11,008 KB
testcase_07 AC 356 ms
10,752 KB
testcase_08 AC 405 ms
10,752 KB
testcase_09 AC 588 ms
10,880 KB
testcase_10 AC 600 ms
10,752 KB
testcase_11 AC 451 ms
10,880 KB
testcase_12 AC 653 ms
10,880 KB
testcase_13 AC 420 ms
10,880 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 28 ms
10,496 KB
testcase_19 AC 50 ms
13,184 KB
testcase_20 AC 33 ms
11,008 KB
testcase_21 AC 39 ms
11,904 KB
testcase_22 AC 48 ms
12,928 KB
testcase_23 AC 45 ms
12,800 KB
testcase_24 AC 44 ms
12,416 KB
testcase_25 AC 42 ms
12,288 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 49 ms
12,416 KB
testcase_29 WA -
testcase_30 AC 38 ms
11,520 KB
testcase_31 AC 54 ms
13,184 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = [0]*n; b = [0]*n; c = []
for _ in range(m):
    u,v = map(int,input().split())
    a[u-1] += 1; b[v-1] += 1
for u,v in zip(a,b):
    if u>v: c.append(u-v)
print(max(sum(c)-1,0))
0