結果

問題 No.2355 Unhappy Back Dance
ユーザー timitimi
提出日時 2023-06-22 15:11:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,258 ms / 6,000 ms
コード長 534 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 79,636 KB
最終ジャッジ日時 2024-06-29 22:20:58
合計ジャッジ時間 18,478 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,944 KB
testcase_01 AC 37 ms
53,680 KB
testcase_02 AC 35 ms
53,796 KB
testcase_03 AC 33 ms
53,448 KB
testcase_04 AC 34 ms
52,584 KB
testcase_05 AC 36 ms
54,064 KB
testcase_06 AC 175 ms
76,676 KB
testcase_07 AC 183 ms
76,504 KB
testcase_08 AC 314 ms
77,440 KB
testcase_09 AC 319 ms
77,464 KB
testcase_10 AC 348 ms
77,344 KB
testcase_11 AC 349 ms
77,512 KB
testcase_12 AC 322 ms
76,992 KB
testcase_13 AC 321 ms
76,788 KB
testcase_14 AC 383 ms
77,560 KB
testcase_15 AC 34 ms
52,692 KB
testcase_16 AC 1,201 ms
79,636 KB
testcase_17 AC 1,258 ms
79,168 KB
testcase_18 AC 1,208 ms
79,568 KB
testcase_19 AC 1,193 ms
79,072 KB
testcase_20 AC 1,208 ms
78,976 KB
testcase_21 AC 544 ms
77,152 KB
testcase_22 AC 150 ms
76,428 KB
testcase_23 AC 156 ms
76,616 KB
testcase_24 AC 1,136 ms
79,136 KB
testcase_25 AC 623 ms
77,216 KB
testcase_26 AC 621 ms
77,384 KB
testcase_27 AC 538 ms
76,888 KB
testcase_28 AC 63 ms
69,484 KB
testcase_29 AC 81 ms
74,828 KB
testcase_30 AC 1,006 ms
78,916 KB
testcase_31 AC 770 ms
77,904 KB
testcase_32 AC 130 ms
76,420 KB
testcase_33 AC 470 ms
76,492 KB
testcase_34 AC 57 ms
66,048 KB
testcase_35 AC 63 ms
68,576 KB
testcase_36 AC 572 ms
76,828 KB
testcase_37 AC 324 ms
76,328 KB
testcase_38 AC 375 ms
76,484 KB
testcase_39 AC 322 ms
76,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[]
for _ in range(N):
  x,y=map(int, input().split())
  A.append((x,y))
  
import math
ans=0
for i in range(N):
  ax,ay=A[i]
  D=[]
  for j in range(N):
    if i==j:
      continue
    bx,by=A[j]
    x,y=bx-ax,by-ay
    if x==0 and y>0:
    	D.append((0,1))
    elif x==0 and y<0:
    	D.append((0,-1))
    elif x>0 and y==0:
    	D.append((1,0))
    elif x<0 and y==0:
    	D.append((-1,0))
    else:
    	d=math.gcd(abs(x),abs(y))
    	x//=d;y//=d
    	D.append((x,y))
  if len(D)!=len(set(D)):
  	ans+=1
print(ans)
0