結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,888 KB
testcase_01 AC 47 ms
54,016 KB
testcase_02 AC 45 ms
53,888 KB
testcase_03 AC 45 ms
54,016 KB
testcase_04 AC 46 ms
53,632 KB
testcase_05 AC 46 ms
53,888 KB
testcase_06 AC 109 ms
77,440 KB
testcase_07 AC 104 ms
77,312 KB
testcase_08 AC 107 ms
77,312 KB
testcase_09 AC 110 ms
77,540 KB
testcase_10 AC 427 ms
80,876 KB
testcase_11 AC 446 ms
81,032 KB
testcase_12 AC 116 ms
77,952 KB
testcase_13 AC 113 ms
77,952 KB
testcase_14 AC 430 ms
81,536 KB
testcase_15 AC 44 ms
54,016 KB
testcase_16 AC 2,197 ms
116,304 KB
testcase_17 AC 2,175 ms
116,028 KB
testcase_18 AC 2,216 ms
119,488 KB
testcase_19 AC 2,217 ms
115,656 KB
testcase_20 AC 2,176 ms
111,368 KB
testcase_21 AC 963 ms
88,140 KB
testcase_22 AC 262 ms
78,084 KB
testcase_23 AC 272 ms
78,236 KB
testcase_24 AC 2,009 ms
114,244 KB
testcase_25 AC 1,117 ms
91,612 KB
testcase_26 AC 1,129 ms
91,220 KB
testcase_27 AC 971 ms
86,400 KB
testcase_28 AC 112 ms
76,736 KB
testcase_29 AC 135 ms
77,048 KB
testcase_30 AC 1,832 ms
107,996 KB
testcase_31 AC 1,369 ms
93,696 KB
testcase_32 AC 216 ms
77,860 KB
testcase_33 AC 817 ms
85,632 KB
testcase_34 AC 91 ms
77,056 KB
testcase_35 AC 105 ms
76,800 KB
testcase_36 AC 966 ms
85,120 KB
testcase_37 AC 572 ms
81,536 KB
testcase_38 AC 674 ms
82,820 KB
testcase_39 AC 557 ms
81,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
from collections import defaultdict

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