結果

問題 No.2355 Unhappy Back Dance
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-09-21 12:33:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,349 ms / 6,000 ms
コード長 1,167 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 81,852 KB
実行使用メモリ 110,388 KB
最終ジャッジ日時 2024-09-21 12:34:23
合計ジャッジ時間 33,857 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,964 KB
testcase_01 AC 35 ms
53,484 KB
testcase_02 AC 37 ms
52,804 KB
testcase_03 AC 37 ms
53,112 KB
testcase_04 AC 38 ms
53,184 KB
testcase_05 AC 35 ms
52,188 KB
testcase_06 AC 486 ms
76,508 KB
testcase_07 AC 429 ms
77,052 KB
testcase_08 AC 518 ms
76,712 KB
testcase_09 AC 539 ms
76,656 KB
testcase_10 AC 845 ms
81,568 KB
testcase_11 AC 826 ms
83,216 KB
testcase_12 AC 568 ms
76,796 KB
testcase_13 AC 529 ms
76,984 KB
testcase_14 AC 870 ms
83,312 KB
testcase_15 AC 36 ms
52,776 KB
testcase_16 AC 2,308 ms
110,304 KB
testcase_17 AC 2,276 ms
109,400 KB
testcase_18 AC 2,260 ms
108,632 KB
testcase_19 AC 2,349 ms
109,792 KB
testcase_20 AC 2,328 ms
110,388 KB
testcase_21 AC 1,041 ms
85,464 KB
testcase_22 AC 264 ms
77,432 KB
testcase_23 AC 280 ms
77,240 KB
testcase_24 AC 2,071 ms
104,564 KB
testcase_25 AC 1,165 ms
87,252 KB
testcase_26 AC 1,191 ms
87,372 KB
testcase_27 AC 1,009 ms
86,156 KB
testcase_28 AC 104 ms
76,016 KB
testcase_29 AC 133 ms
76,640 KB
testcase_30 AC 1,868 ms
104,516 KB
testcase_31 AC 1,422 ms
93,352 KB
testcase_32 AC 220 ms
76,840 KB
testcase_33 AC 857 ms
83,688 KB
testcase_34 AC 92 ms
76,228 KB
testcase_35 AC 107 ms
76,672 KB
testcase_36 AC 1,013 ms
86,168 KB
testcase_37 AC 565 ms
79,940 KB
testcase_38 AC 719 ms
81,600 KB
testcase_39 AC 574 ms
80,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2355


def calc_gcd(A, B):
    """
    正の整数A, Bの最大公約数を計算する
    """
    a = max(A, B)
    b = min(A, B)
    while a % b > 0:
        c = a % b
        a = b
        b = c
    return b

def main():
    N = int(input())
    xy = []
    for _ in range(N):
        x, y = map(int, input().split())
        xy.append((x, y))
    
    answer = 0
    for i in range(N):
        x0, y0 = xy[i]
        a_map = {}
        for j in range(N):
            if i == j:
                continue

            x1, y1 = xy[j]
            dx = x1 - x0
            dy = y1 - y0

            if dx == 0:
                dy = dy // abs(dy)
            elif dy == 0:
                dx = dx // abs(dx)
            else:
                gcd = calc_gcd(abs(dx), abs(dy))
                dx //= gcd
                dy //= gcd
            if (dx, dy) not in a_map:
                a_map[(dx, dy)] = 0
            a_map[(dx, dy)] += 1
        
        if len(a_map) > 0:
            ans = max(a_map.values())
            if ans >= 2:
                answer += 1
    print(answer)
    








if __name__ == "__main__":
    main()
0