結果

問題 No.1041 直線大学
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-05-01 21:31:02
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 559 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 71,296 KB
最終ジャッジ日時 2024-11-16 07:46:53
合計ジャッジ時間 3,512 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,096 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 42 ms
52,224 KB
testcase_07 AC 43 ms
52,608 KB
testcase_08 AC 43 ms
52,352 KB
testcase_09 AC 43 ms
52,608 KB
testcase_10 AC 54 ms
61,184 KB
testcase_11 AC 54 ms
60,672 KB
testcase_12 AC 54 ms
60,672 KB
testcase_13 AC 44 ms
52,864 KB
testcase_14 AC 71 ms
66,560 KB
testcase_15 AC 46 ms
53,888 KB
testcase_16 AC 64 ms
64,768 KB
testcase_17 AC 42 ms
52,480 KB
testcase_18 AC 58 ms
62,464 KB
testcase_19 AC 65 ms
65,280 KB
testcase_20 AC 47 ms
52,224 KB
testcase_21 AC 59 ms
63,744 KB
testcase_22 AC 42 ms
51,840 KB
testcase_23 AC 80 ms
70,144 KB
testcase_24 AC 71 ms
67,072 KB
testcase_25 AC 59 ms
63,488 KB
testcase_26 AC 43 ms
52,480 KB
testcase_27 AC 45 ms
53,248 KB
testcase_28 AC 41 ms
51,968 KB
testcase_29 AC 41 ms
52,096 KB
testcase_30 AC 41 ms
51,968 KB
testcase_31 AC 41 ms
52,224 KB
testcase_32 AC 41 ms
51,840 KB
testcase_33 AC 41 ms
51,968 KB
testcase_34 AC 41 ms
51,840 KB
testcase_35 AC 41 ms
51,840 KB
testcase_36 AC 42 ms
51,968 KB
testcase_37 AC 42 ms
51,968 KB
testcase_38 AC 83 ms
71,296 KB
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 < 0:
            XX *= -1
            YY *= -1

        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