結果

問題 No.1605 Matrix Shape
ユーザー 炭酸水炭酸水
提出日時 2022-05-19 22:51:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 539 bytes
コンパイル時間 509 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 39,948 KB
最終ジャッジ日時 2024-09-19 03:33:47
合計ジャッジ時間 16,647 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 WA -
testcase_03 AC 27 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 WA -
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 WA -
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 27 ms
10,624 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 917 ms
39,760 KB
testcase_20 AC 827 ms
25,236 KB
testcase_21 AC 811 ms
25,300 KB
testcase_22 WA -
testcase_23 AC 870 ms
39,840 KB
testcase_24 AC 901 ms
39,948 KB
testcase_25 AC 694 ms
10,752 KB
testcase_26 AC 703 ms
10,752 KB
testcase_27 AC 707 ms
10,752 KB
testcase_28 WA -
testcase_29 AC 704 ms
10,880 KB
testcase_30 AC 827 ms
25,324 KB
testcase_31 AC 845 ms
25,240 KB
testcase_32 AC 792 ms
18,148 KB
testcase_33 WA -
testcase_34 AC 687 ms
10,624 KB
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

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))
0