結果

問題 No.2355 Unhappy Back Dance
ユーザー lloyzlloyz
提出日時 2023-06-24 14:28:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,195 ms / 6,000 ms
コード長 692 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 119,528 KB
最終ジャッジ日時 2024-07-01 17:07:21
合計ジャッジ時間 28,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,380 KB
testcase_01 AC 42 ms
54,404 KB
testcase_02 AC 42 ms
54,948 KB
testcase_03 AC 42 ms
54,916 KB
testcase_04 AC 42 ms
54,972 KB
testcase_05 AC 41 ms
54,756 KB
testcase_06 AC 83 ms
77,532 KB
testcase_07 AC 83 ms
77,552 KB
testcase_08 AC 86 ms
77,680 KB
testcase_09 AC 86 ms
77,584 KB
testcase_10 AC 391 ms
80,920 KB
testcase_11 AC 411 ms
81,324 KB
testcase_12 AC 91 ms
77,620 KB
testcase_13 AC 91 ms
77,460 KB
testcase_14 AC 400 ms
81,932 KB
testcase_15 AC 42 ms
55,268 KB
testcase_16 AC 2,195 ms
115,924 KB
testcase_17 AC 2,141 ms
116,088 KB
testcase_18 AC 2,161 ms
119,528 KB
testcase_19 AC 2,147 ms
116,120 KB
testcase_20 AC 2,136 ms
111,744 KB
testcase_21 AC 931 ms
87,792 KB
testcase_22 AC 243 ms
77,536 KB
testcase_23 AC 256 ms
77,900 KB
testcase_24 AC 1,971 ms
114,264 KB
testcase_25 AC 1,087 ms
91,200 KB
testcase_26 AC 1,096 ms
91,108 KB
testcase_27 AC 941 ms
85,740 KB
testcase_28 AC 102 ms
77,180 KB
testcase_29 AC 126 ms
77,140 KB
testcase_30 AC 1,769 ms
108,632 KB
testcase_31 AC 1,315 ms
93,540 KB
testcase_32 AC 200 ms
77,284 KB
testcase_33 AC 790 ms
85,256 KB
testcase_34 AC 84 ms
77,304 KB
testcase_35 AC 97 ms
77,004 KB
testcase_36 AC 927 ms
85,568 KB
testcase_37 AC 548 ms
81,676 KB
testcase_38 AC 649 ms
82,676 KB
testcase_39 AC 534 ms
80,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
from collections import defaultdict
import sys
input = sys.stdin.readline

n = int(input())
P = [list(map(int, input().split())) for _ in range(n)]

ans = 0
for i in range(n):
    xi, yi = P[i]
    counter = defaultdict(int)
    flag = False
    for j in range(n):
        if i == j:
            continue
        xj, yj = P[j]
        dx, dy = abs(xi - xj), abs(yi - yj)
        gcd_ = gcd(dx, dy)
        dx, dy = dx // gcd_, dy // gcd_
        plus_x = (xj >= xi)
        plus_y = (yj >= yi)
        counter[dx, dy, plus_x, plus_y] += 1
        if counter[dx, dy, plus_x, plus_y] == 2:
            flag = True
            break
    if flag:
        ans += 1
print(ans)
0