結果

問題 No.1605 Matrix Shape
ユーザー trineutrontrineutron
提出日時 2021-07-16 21:40:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 646 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-07-06 08:41:19
合計ジャッジ時間 15,401 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
15,360 KB
testcase_01 AC 123 ms
15,488 KB
testcase_02 AC 116 ms
15,488 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 118 ms
15,488 KB
testcase_06 AC 118 ms
15,488 KB
testcase_07 AC 114 ms
15,488 KB
testcase_08 AC 123 ms
15,360 KB
testcase_09 AC 119 ms
15,488 KB
testcase_10 AC 119 ms
15,360 KB
testcase_11 AC 30 ms
15,488 KB
testcase_12 AC 119 ms
15,488 KB
testcase_13 AC 118 ms
15,488 KB
testcase_14 AC 123 ms
15,360 KB
testcase_15 AC 113 ms
15,488 KB
testcase_16 AC 123 ms
15,360 KB
testcase_17 AC 29 ms
15,360 KB
testcase_18 AC 29 ms
15,488 KB
testcase_19 AC 722 ms
15,360 KB
testcase_20 AC 684 ms
15,488 KB
testcase_21 AC 687 ms
15,488 KB
testcase_22 WA -
testcase_23 AC 693 ms
15,360 KB
testcase_24 AC 701 ms
15,360 KB
testcase_25 AC 681 ms
15,488 KB
testcase_26 AC 700 ms
15,360 KB
testcase_27 AC 715 ms
15,488 KB
testcase_28 AC 600 ms
15,488 KB
testcase_29 AC 703 ms
15,488 KB
testcase_30 AC 697 ms
15,488 KB
testcase_31 AC 692 ms
15,488 KB
testcase_32 AC 685 ms
15,488 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 587 ms
15,488 KB
testcase_36 AC 315 ms
15,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
count_h = [0] * 200000
count_w = [0] * 200000
loop = [0] * 200000
for i in range(n):
    h, w = map(int, input().split())
    h -= 1
    w -= 1
    if h == w:
        loop[h] += 1
    else:
        count_h[h] += 1
        count_w[w] += 1
ans = 0
diff = []
for i in range(200000):
    if abs(count_h[i] - count_w[i]) > 1:
        print(0)
        exit()
    elif count_h[i] == 0 and count_w[i] == 0 and loop[i] != 0:
        print(0)
        exit()
    elif count_h[i] != count_w[i]:
        diff.append(i)
    elif count_h[i]:
        ans += 1
if len(diff) > 2:
    print(0)
    exit()
if diff:
    print(1)
else:
    print(ans)
0