結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
62,856 KB
testcase_01 AC 47 ms
63,868 KB
testcase_02 AC 47 ms
62,900 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 44 ms
63,776 KB
testcase_06 WA -
testcase_07 AC 43 ms
63,720 KB
testcase_08 WA -
testcase_09 AC 43 ms
63,424 KB
testcase_10 AC 49 ms
62,888 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 44 ms
63,520 KB
testcase_14 AC 42 ms
63,292 KB
testcase_15 AC 42 ms
63,104 KB
testcase_16 AC 42 ms
63,280 KB
testcase_17 AC 48 ms
64,080 KB
testcase_18 AC 43 ms
62,812 KB
testcase_19 AC 178 ms
79,684 KB
testcase_20 WA -
testcase_21 AC 177 ms
79,928 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 166 ms
79,872 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 141 ms
79,580 KB
testcase_28 WA -
testcase_29 AC 137 ms
79,916 KB
testcase_30 WA -
testcase_31 AC 164 ms
79,840 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 166 ms
79,648 KB
testcase_36 AC 121 ms
79,636 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
for i in range(200001):
  if h[i]!=w[i]:
    x+=1
if x==2:
  print(1)
elif x==0:
  print(n)
else:
  print(0)
0