結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,576 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 38 ms
52,440 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 48 ms
61,184 KB
testcase_08 AC 48 ms
60,928 KB
testcase_09 AC 50 ms
61,184 KB
testcase_10 AC 47 ms
62,848 KB
testcase_11 AC 48 ms
62,720 KB
testcase_12 AC 47 ms
63,104 KB
testcase_13 AC 50 ms
62,592 KB
testcase_14 AC 72 ms
76,592 KB
testcase_15 AC 53 ms
64,896 KB
testcase_16 AC 76 ms
76,800 KB
testcase_17 AC 49 ms
60,160 KB
testcase_18 AC 59 ms
68,992 KB
testcase_19 AC 69 ms
76,408 KB
testcase_20 AC 39 ms
52,608 KB
testcase_21 AC 62 ms
71,272 KB
testcase_22 AC 40 ms
51,840 KB
testcase_23 AC 80 ms
76,416 KB
testcase_24 AC 69 ms
76,416 KB
testcase_25 AC 59 ms
70,016 KB
testcase_26 AC 47 ms
61,696 KB
testcase_27 AC 56 ms
66,816 KB
testcase_28 AC 39 ms
52,224 KB
testcase_29 AC 39 ms
52,224 KB
testcase_30 AC 40 ms
51,840 KB
testcase_31 AC 39 ms
52,096 KB
testcase_32 AC 39 ms
52,224 KB
testcase_33 AC 39 ms
51,840 KB
testcase_34 AC 39 ms
52,096 KB
testcase_35 AC 40 ms
51,968 KB
testcase_36 AC 39 ms
52,096 KB
testcase_37 AC 39 ms
52,224 KB
testcase_38 AC 73 ms
76,820 KB
testcase_39 AC 52 ms
64,256 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