結果

問題 No.1041 直線大学
ユーザー toyuzukotoyuzuko
提出日時 2020-05-03 20:03:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-28 00:15:02
合計ジャッジ時間 4,482 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 34 ms
10,624 KB
testcase_08 AC 35 ms
10,752 KB
testcase_09 AC 35 ms
10,624 KB
testcase_10 AC 312 ms
10,624 KB
testcase_11 AC 306 ms
10,752 KB
testcase_12 AC 346 ms
10,752 KB
testcase_13 AC 41 ms
10,624 KB
testcase_14 AC 162 ms
10,752 KB
testcase_15 AC 54 ms
10,752 KB
testcase_16 AC 125 ms
10,752 KB
testcase_17 AC 32 ms
10,624 KB
testcase_18 AC 68 ms
10,624 KB
testcase_19 AC 124 ms
10,624 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 78 ms
10,624 KB
testcase_22 AC 29 ms
10,624 KB
testcase_23 AC 257 ms
10,624 KB
testcase_24 AC 146 ms
10,752 KB
testcase_25 AC 83 ms
10,624 KB
testcase_26 AC 36 ms
10,880 KB
testcase_27 AC 49 ms
10,624 KB
testcase_28 AC 29 ms
10,752 KB
testcase_29 AC 29 ms
10,752 KB
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 29 ms
10,624 KB
testcase_32 AC 30 ms
10,624 KB
testcase_33 AC 29 ms
10,624 KB
testcase_34 AC 30 ms
10,624 KB
testcase_35 AC 29 ms
10,624 KB
testcase_36 AC 29 ms
10,624 KB
testcase_37 AC 30 ms
10,752 KB
testcase_38 AC 325 ms
10,624 KB
testcase_39 AC 44 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = [tuple(map(int, input().split())) for _ in range(N)]
res = 0
for i in range(N - 1):
    for j in range(i + 1, N):
        tmp = 2
        dx = L[i][0] - L[j][0]
        dy = L[i][1] - L[j][1]
        for k in range(N):
            if k == i or k == j:
                continue
            dx_k = L[i][0] - L[k][0]
            dy_k = L[i][1] - L[k][1]
            if dx * dy_k == dy * dx_k:
                tmp += 1
        res = max(tmp, res)
print(res)
0