結果

問題 No.1041 直線大学
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-05-01 21:29:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 497 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 70,400 KB
最終ジャッジ日時 2024-06-07 02:03:37
合計ジャッジ時間 3,131 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 38 ms
52,192 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 39 ms
52,864 KB
testcase_08 AC 38 ms
52,864 KB
testcase_09 AC 41 ms
52,992 KB
testcase_10 AC 48 ms
61,056 KB
testcase_11 AC 47 ms
61,184 KB
testcase_12 AC 48 ms
60,672 KB
testcase_13 AC 40 ms
53,120 KB
testcase_14 WA -
testcase_15 AC 41 ms
53,484 KB
testcase_16 AC 57 ms
65,264 KB
testcase_17 AC 40 ms
52,736 KB
testcase_18 AC 51 ms
62,208 KB
testcase_19 AC 57 ms
65,408 KB
testcase_20 AC 37 ms
52,352 KB
testcase_21 WA -
testcase_22 AC 37 ms
52,352 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 51 ms
63,232 KB
testcase_26 AC 38 ms
52,736 KB
testcase_27 AC 41 ms
53,632 KB
testcase_28 AC 38 ms
52,352 KB
testcase_29 AC 37 ms
52,096 KB
testcase_30 AC 38 ms
51,968 KB
testcase_31 AC 37 ms
51,968 KB
testcase_32 AC 38 ms
52,096 KB
testcase_33 AC 38 ms
52,352 KB
testcase_34 AC 37 ms
52,480 KB
testcase_35 AC 38 ms
52,224 KB
testcase_36 AC 38 ms
52,096 KB
testcase_37 AC 37 ms
52,352 KB
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = int(input())

XY = []

for i in range(N):

    x,y = map(int,input().split())
    XY.append([x,y])

ans = 1

for i in range(N):

    ox,oy = XY[i]
    dic = {}

    for j in range(i):

        nx,ny = XY[j]

        x = ox-nx
        y = oy-ny

        XX = x // math.gcd(x,y)
        YY = y // math.gcd(x,y)

        if (XX,YY) not in dic:
            dic[(XX,YY)] = 1
        else:
            dic[(XX,YY)] += 1

    for t in dic:
        ans = max(ans,dic[t] + 1)

print (ans)
0