結果

問題 No.1605 Matrix Shape
ユーザー とりゐとりゐ
提出日時 2021-07-16 21:39:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 713 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-07-06 08:38:15
合計ジャッジ時間 5,090 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
63,364 KB
testcase_01 AC 45 ms
63,752 KB
testcase_02 AC 48 ms
63,644 KB
testcase_03 AC 44 ms
62,932 KB
testcase_04 WA -
testcase_05 AC 42 ms
63,484 KB
testcase_06 AC 43 ms
64,888 KB
testcase_07 AC 41 ms
63,564 KB
testcase_08 AC 41 ms
63,716 KB
testcase_09 AC 43 ms
63,260 KB
testcase_10 AC 40 ms
63,160 KB
testcase_11 WA -
testcase_12 AC 42 ms
63,412 KB
testcase_13 AC 42 ms
63,248 KB
testcase_14 AC 41 ms
63,412 KB
testcase_15 AC 42 ms
63,260 KB
testcase_16 AC 42 ms
63,624 KB
testcase_17 AC 42 ms
63,320 KB
testcase_18 AC 46 ms
63,584 KB
testcase_19 AC 175 ms
79,956 KB
testcase_20 AC 154 ms
79,864 KB
testcase_21 AC 148 ms
80,028 KB
testcase_22 WA -
testcase_23 AC 171 ms
79,668 KB
testcase_24 AC 171 ms
79,856 KB
testcase_25 AC 137 ms
79,708 KB
testcase_26 AC 140 ms
79,984 KB
testcase_27 AC 139 ms
79,644 KB
testcase_28 WA -
testcase_29 AC 133 ms
79,776 KB
testcase_30 AC 151 ms
80,120 KB
testcase_31 AC 165 ms
80,184 KB
testcase_32 AC 159 ms
79,836 KB
testcase_33 WA -
testcase_34 AC 142 ms
81,536 KB
testcase_35 AC 148 ms
79,980 KB
testcase_36 AC 113 ms
79,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
from collections import deque,Counter
#sys.setrecursionlimit(10**7)
int1=lambda x: int(x)-1

inp=lambda :int(input())
mi=lambda :map(int,input().split())
li=lambda :list(mi())
mi1=lambda :map(int1,input().split())
li1=lambda :list(mi1())
mis=lambda :map(str,input().split())
lis=lambda :list(mis())
pr=print

from collections import defaultdict
"""
#初期値 0
d=defaultdict(int)

#初期値 1
d=defaultdict(lambda:1)
"""

mod=10**9+7
Mod=998244353
INF=10**18
ans=0

n=inp()
h=[0]*200001
w=[0]*200001
for i in range(n):
  a,b=mi()
  h[a]+=1
  w[b]+=1
x=0
y=0
for i in range(200001):
  if h[i]!=w[i]:
    x+=1
  if h[i]>0:
    y+=1
if x==2:
  print(1)
elif x==0:
  print(y)
else:
  print(0)
0