結果

問題 No.1041 直線大学
ユーザー splash9494splash9494
提出日時 2024-05-08 17:53:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 76,824 KB
最終ジャッジ日時 2024-12-14 23:53:29
合計ジャッジ時間 3,355 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,728 KB
testcase_01 AC 40 ms
52,728 KB
testcase_02 AC 39 ms
52,004 KB
testcase_03 AC 41 ms
52,652 KB
testcase_04 AC 40 ms
52,088 KB
testcase_05 AC 39 ms
52,464 KB
testcase_06 AC 38 ms
53,144 KB
testcase_07 AC 47 ms
62,228 KB
testcase_08 AC 48 ms
62,596 KB
testcase_09 AC 49 ms
62,344 KB
testcase_10 AC 48 ms
63,080 KB
testcase_11 AC 47 ms
64,256 KB
testcase_12 AC 47 ms
63,892 KB
testcase_13 AC 49 ms
64,388 KB
testcase_14 AC 69 ms
76,824 KB
testcase_15 AC 50 ms
64,712 KB
testcase_16 AC 66 ms
76,360 KB
testcase_17 AC 46 ms
60,632 KB
testcase_18 AC 58 ms
70,796 KB
testcase_19 AC 67 ms
76,640 KB
testcase_20 AC 39 ms
52,312 KB
testcase_21 AC 61 ms
71,636 KB
testcase_22 AC 39 ms
52,480 KB
testcase_23 AC 80 ms
76,308 KB
testcase_24 AC 70 ms
76,416 KB
testcase_25 AC 59 ms
70,420 KB
testcase_26 AC 48 ms
62,920 KB
testcase_27 AC 55 ms
67,176 KB
testcase_28 AC 40 ms
52,360 KB
testcase_29 AC 40 ms
52,772 KB
testcase_30 AC 39 ms
53,184 KB
testcase_31 AC 42 ms
53,428 KB
testcase_32 AC 40 ms
52,684 KB
testcase_33 AC 40 ms
52,828 KB
testcase_34 AC 39 ms
52,528 KB
testcase_35 AC 39 ms
52,636 KB
testcase_36 AC 39 ms
52,612 KB
testcase_37 AC 41 ms
52,656 KB
testcase_38 AC 72 ms
76,468 KB
testcase_39 AC 53 ms
65,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ns = [tuple(map(int, input().split())) for _ in range(N)]

def is_linear(p1, p2, p3):
    return ((p1[0] - p3[0]) * (p1[1] - p2[1])) - ((p1[0] - p2[0]) * (p1[1] - p3[1])) == 0

lines = [[ns[0], ns[1]]]

for i, p in enumerate(ns[2:]):
    linear_points = set()
    current_points = set(ns[:2+i])
    for line in lines:
        if is_linear(*line[:2], p):
            line.append(p)
            linear_points |= set(line)
    
    lines.extend([[nonlinear, p] for nonlinear in (current_points - linear_points)])

print(max(len(line) for line in lines))
0