結果

問題 No.1605 Matrix Shape
ユーザー ayaoniayaoni
提出日時 2021-09-01 21:41:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 903 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 80,836 KB
最終ジャッジ日時 2024-11-28 14:19:47
合計ジャッジ時間 6,036 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
61,368 KB
testcase_01 AC 44 ms
61,556 KB
testcase_02 AC 43 ms
61,836 KB
testcase_03 AC 43 ms
62,220 KB
testcase_04 WA -
testcase_05 AC 45 ms
61,500 KB
testcase_06 AC 44 ms
61,796 KB
testcase_07 AC 44 ms
61,708 KB
testcase_08 AC 43 ms
61,500 KB
testcase_09 AC 44 ms
61,412 KB
testcase_10 AC 44 ms
61,184 KB
testcase_11 AC 40 ms
55,540 KB
testcase_12 AC 43 ms
62,288 KB
testcase_13 AC 46 ms
62,752 KB
testcase_14 AC 44 ms
61,252 KB
testcase_15 AC 43 ms
61,632 KB
testcase_16 AC 44 ms
61,500 KB
testcase_17 AC 40 ms
56,164 KB
testcase_18 AC 40 ms
55,660 KB
testcase_19 AC 124 ms
78,816 KB
testcase_20 AC 116 ms
78,812 KB
testcase_21 AC 120 ms
78,880 KB
testcase_22 WA -
testcase_23 AC 123 ms
79,044 KB
testcase_24 AC 126 ms
79,272 KB
testcase_25 AC 95 ms
78,936 KB
testcase_26 AC 95 ms
78,952 KB
testcase_27 AC 96 ms
78,716 KB
testcase_28 WA -
testcase_29 AC 93 ms
78,768 KB
testcase_30 AC 114 ms
79,264 KB
testcase_31 AC 120 ms
79,432 KB
testcase_32 AC 112 ms
78,916 KB
testcase_33 WA -
testcase_34 AC 98 ms
80,836 KB
testcase_35 AC 114 ms
79,236 KB
testcase_36 AC 85 ms
78,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N = I()

M = 2*10**5
in_deg = [0]*(M+1)
out_deg = [0]*(M+1)
for _ in range(N):
    H,W = MI()
    out_deg[H] += 1
    in_deg[W] += 1

a,b,c = 0,0,0
for i in range(1,M+1):
    if in_deg[i] == out_deg[i]:
        if in_deg[i]:
            a += 1
    elif in_deg[i] == out_deg[i]+1:
        b += 1
    elif in_deg[i]+1 == out_deg[i]:
        c += 1
    else:
        print(0)
        exit()

if b > 1 or c > 1 or b != c:
    print(0)
    exit()

if b:
    print(1)
else:
    print(a)
0