結果

問題 No.2355 Unhappy Back Dance
ユーザー とりゐとりゐ
提出日時 2023-06-16 22:41:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,401 ms / 6,000 ms
コード長 402 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 79,524 KB
最終ジャッジ日時 2024-06-24 15:26:52
合計ジャッジ時間 21,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,832 KB
testcase_01 AC 39 ms
53,132 KB
testcase_02 AC 39 ms
52,644 KB
testcase_03 AC 39 ms
52,212 KB
testcase_04 AC 39 ms
53,480 KB
testcase_05 AC 39 ms
52,900 KB
testcase_06 AC 263 ms
76,796 KB
testcase_07 AC 260 ms
76,664 KB
testcase_08 AC 312 ms
76,452 KB
testcase_09 AC 314 ms
76,964 KB
testcase_10 AC 473 ms
77,916 KB
testcase_11 AC 473 ms
77,880 KB
testcase_12 AC 321 ms
76,888 KB
testcase_13 AC 313 ms
77,104 KB
testcase_14 AC 446 ms
77,352 KB
testcase_15 AC 38 ms
52,008 KB
testcase_16 AC 1,388 ms
79,196 KB
testcase_17 AC 1,387 ms
79,292 KB
testcase_18 AC 1,401 ms
79,524 KB
testcase_19 AC 1,390 ms
79,348 KB
testcase_20 AC 1,383 ms
79,100 KB
testcase_21 AC 619 ms
77,080 KB
testcase_22 AC 172 ms
76,440 KB
testcase_23 AC 181 ms
76,248 KB
testcase_24 AC 1,268 ms
79,444 KB
testcase_25 AC 720 ms
77,296 KB
testcase_26 AC 721 ms
77,108 KB
testcase_27 AC 621 ms
76,788 KB
testcase_28 AC 70 ms
67,856 KB
testcase_29 AC 92 ms
73,800 KB
testcase_30 AC 1,164 ms
78,884 KB
testcase_31 AC 874 ms
77,796 KB
testcase_32 AC 146 ms
76,136 KB
testcase_33 AC 526 ms
76,660 KB
testcase_34 AC 60 ms
66,288 KB
testcase_35 AC 71 ms
68,396 KB
testcase_36 AC 622 ms
76,676 KB
testcase_37 AC 371 ms
76,464 KB
testcase_38 AC 439 ms
76,208 KB
testcase_39 AC 362 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
xy=[]
for i in range(n):
  x,y=map(int,input().split())
  xy.append((x,y))

ans=0
import math
for i in range(n):
  s=set()
  flag=False
  for j in range(n):
    if i==j:
      continue
    xi,yi=xy[i]
    xj,yj=xy[j]
    dx=xj-xi
    dy=yj-yi
    g=math.gcd(dx,dy)
    dx//=g
    dy//=g
    if (dx,dy) in s:
      flag=True
    else:
      s.add((dx,dy))
  if flag:
    ans+=1
print(ans)
0