結果

問題 No.2355 Unhappy Back Dance
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-16 22:35:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,636 ms / 6,000 ms
コード長 439 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 83,024 KB
最終ジャッジ日時 2024-08-16 22:36:06
合計ジャッジ時間 25,641 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,584 KB
testcase_01 AC 36 ms
52,940 KB
testcase_02 AC 34 ms
53,608 KB
testcase_03 AC 34 ms
52,936 KB
testcase_04 AC 35 ms
53,536 KB
testcase_05 AC 35 ms
52,724 KB
testcase_06 AC 471 ms
76,896 KB
testcase_07 AC 469 ms
77,072 KB
testcase_08 AC 544 ms
77,108 KB
testcase_09 AC 574 ms
77,008 KB
testcase_10 AC 642 ms
78,884 KB
testcase_11 AC 696 ms
79,564 KB
testcase_12 AC 557 ms
77,088 KB
testcase_13 AC 577 ms
77,284 KB
testcase_14 AC 685 ms
78,896 KB
testcase_15 AC 35 ms
53,744 KB
testcase_16 AC 1,593 ms
83,024 KB
testcase_17 AC 1,626 ms
82,772 KB
testcase_18 AC 1,633 ms
83,024 KB
testcase_19 AC 1,631 ms
82,948 KB
testcase_20 AC 1,636 ms
82,568 KB
testcase_21 AC 725 ms
78,160 KB
testcase_22 AC 190 ms
76,720 KB
testcase_23 AC 199 ms
76,760 KB
testcase_24 AC 1,473 ms
82,644 KB
testcase_25 AC 830 ms
78,784 KB
testcase_26 AC 835 ms
78,952 KB
testcase_27 AC 701 ms
77,992 KB
testcase_28 AC 75 ms
74,552 KB
testcase_29 AC 103 ms
76,732 KB
testcase_30 AC 1,351 ms
81,124 KB
testcase_31 AC 1,015 ms
79,740 KB
testcase_32 AC 159 ms
76,896 KB
testcase_33 AC 624 ms
77,208 KB
testcase_34 AC 68 ms
71,836 KB
testcase_35 AC 76 ms
74,020 KB
testcase_36 AC 697 ms
77,580 KB
testcase_37 AC 446 ms
77,032 KB
testcase_38 AC 481 ms
77,228 KB
testcase_39 AC 407 ms
76,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
p=[tuple(map(int,input().split())) for i in range(n)]
a=0
from math import gcd
for i in range(n):
  sx,sy=p[i]
  d={}
  for j in range(n):
    if i==j:
      continue
    tx,ty=p[j]
    dx,dy=tx-sx,ty-sy
    if dx==0:
      v=(0,dy//abs(dy))
    elif dy==0:
      v=(dx//abs(dx),0)
    else:
      g=gcd(abs(dx),abs(dy))
      v=(dx//g,dy//g)
    if v not in d:
      d[v]=0
    d[v]+=1
  a+=any(d[v]>=2 for v in d)
print(a)
0