結果

問題 No.1605 Matrix Shape
ユーザー 炭酸水炭酸水
提出日時 2022-05-19 22:53:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 558 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 39,940 KB
最終ジャッジ日時 2024-09-19 03:36:17
合計ジャッジ時間 16,086 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 24 ms
10,752 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 27 ms
10,624 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 27 ms
10,624 KB
testcase_17 AC 27 ms
10,624 KB
testcase_18 AC 26 ms
10,624 KB
testcase_19 AC 841 ms
39,808 KB
testcase_20 AC 805 ms
25,312 KB
testcase_21 AC 778 ms
25,308 KB
testcase_22 WA -
testcase_23 AC 876 ms
39,684 KB
testcase_24 AC 889 ms
39,812 KB
testcase_25 AC 668 ms
10,752 KB
testcase_26 AC 668 ms
10,752 KB
testcase_27 AC 662 ms
10,752 KB
testcase_28 WA -
testcase_29 AC 729 ms
10,752 KB
testcase_30 AC 787 ms
25,184 KB
testcase_31 AC 741 ms
25,180 KB
testcase_32 AC 723 ms
18,024 KB
testcase_33 WA -
testcase_34 AC 666 ms
10,752 KB
testcase_35 AC 677 ms
33,140 KB
testcase_36 AC 415 ms
25,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

v = set()
z = {}
for _ in range(n):
    x, y = map(int, input().split())
    if x in v:
        z[x] += 1
    else:
        v.add(x)
        z[x] = 1
    if y in v:
        z[y] -= 1
    else:
        v.add(y)
        z[y] = -1

count_p1 = 0
count_0 = 0
count_m1 = 0

for i in v:
    if z[i] == 0:
        count_0 += 1
    elif z[i] == 1:
        count_p1 += 1
    elif z[i] == -1:
        count_m1 += 1

if count_m1 == 1 and count_p1 == 1 and count_0 == len(v) - 2:
    print(1)
elif count_0 == len(v):
    print(len(v))
else:
    print(0)
0