結果

問題 No.1041 直線大学
ユーザー konchanksukonchanksu
提出日時 2020-05-02 01:00:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 472 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-12-25 20:02:57
合計ジャッジ時間 4,088 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 292 ms
10,752 KB
testcase_11 WA -
testcase_12 AC 300 ms
10,624 KB
testcase_13 AC 39 ms
10,752 KB
testcase_14 AC 121 ms
10,624 KB
testcase_15 AC 46 ms
10,624 KB
testcase_16 AC 98 ms
10,624 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 52 ms
10,752 KB
testcase_19 AC 92 ms
10,624 KB
testcase_20 AC 27 ms
10,624 KB
testcase_21 AC 59 ms
10,624 KB
testcase_22 AC 27 ms
10,624 KB
testcase_23 AC 198 ms
10,624 KB
testcase_24 AC 112 ms
10,624 KB
testcase_25 WA -
testcase_26 AC 34 ms
10,624 KB
testcase_27 AC 42 ms
10,624 KB
testcase_28 WA -
testcase_29 AC 28 ms
10,624 KB
testcase_30 AC 26 ms
10,624 KB
testcase_31 AC 26 ms
10,624 KB
testcase_32 AC 27 ms
10,752 KB
testcase_33 WA -
testcase_34 AC 27 ms
10,624 KB
testcase_35 AC 28 ms
10,624 KB
testcase_36 AC 27 ms
10,624 KB
testcase_37 AC 28 ms
10,624 KB
testcase_38 AC 230 ms
10,624 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X, Y = [], []
for i in range(N):
    te, mp = map(int, input().split())
    X.append(te), Y.append(mp)
gosa = 10 ** -10


ans = 0
for i in range(N):
    for j in range(i + 1, N):
        a = (Y[i] - Y[j]) / (X[i] - X[j]) if X[i] - X[j] else 0
        b = Y[i] - a * X[i]
        tmp = 0
        for k in range(N):
            if a * X[k] + b >= Y[k] - gosa and a * X[k] + b <= Y[k] + gosa:
                tmp += 1
        ans = max(tmp, ans)

print(ans)
0