結果

問題 No.2355 Unhappy Back Dance
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-09-21 12:32:12
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,128 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 110,392 KB
最終ジャッジ日時 2024-09-21 12:32:51
合計ジャッジ時間 34,124 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 47 ms
52,608 KB
testcase_05 AC 47 ms
52,352 KB
testcase_06 AC 428 ms
76,800 KB
testcase_07 AC 439 ms
76,964 KB
testcase_08 AC 533 ms
76,400 KB
testcase_09 AC 520 ms
76,800 KB
testcase_10 AC 811 ms
81,296 KB
testcase_11 AC 837 ms
82,476 KB
testcase_12 AC 561 ms
76,536 KB
testcase_13 AC 543 ms
76,528 KB
testcase_14 AC 898 ms
83,624 KB
testcase_15 RE -
testcase_16 AC 2,320 ms
109,776 KB
testcase_17 AC 2,333 ms
109,264 KB
testcase_18 AC 2,298 ms
108,612 KB
testcase_19 AC 2,321 ms
110,108 KB
testcase_20 AC 2,276 ms
110,392 KB
testcase_21 AC 1,002 ms
85,220 KB
testcase_22 AC 257 ms
77,612 KB
testcase_23 AC 301 ms
77,488 KB
testcase_24 AC 2,084 ms
104,832 KB
testcase_25 AC 1,190 ms
87,500 KB
testcase_26 AC 1,149 ms
87,504 KB
testcase_27 AC 1,014 ms
86,280 KB
testcase_28 AC 105 ms
76,112 KB
testcase_29 AC 137 ms
76,612 KB
testcase_30 AC 1,947 ms
104,052 KB
testcase_31 AC 1,426 ms
93,072 KB
testcase_32 AC 216 ms
77,156 KB
testcase_33 AC 873 ms
83,812 KB
testcase_34 AC 95 ms
76,404 KB
testcase_35 AC 107 ms
76,404 KB
testcase_36 AC 1,027 ms
86,016 KB
testcase_37 AC 577 ms
80,256 KB
testcase_38 AC 713 ms
81,232 KB
testcase_39 AC 549 ms
80,612 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
        
        ans = max(a_map.values())
        if ans >= 2:
            answer += 1
    print(answer)
    








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