結果

問題 No.1041 直線大学
ユーザー liny_tailliny_tail
提出日時 2024-08-16 16:42:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 538 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-08-16 16:42:15
合計ジャッジ時間 2,968 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 WA -
testcase_07 AC 28 ms
11,008 KB
testcase_08 WA -
testcase_09 AC 28 ms
11,008 KB
testcase_10 AC 36 ms
11,136 KB
testcase_11 AC 33 ms
11,264 KB
testcase_12 AC 35 ms
11,136 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 31 ms
11,008 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 26 ms
10,880 KB
testcase_21 WA -
testcase_22 AC 29 ms
10,752 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 27 ms
10,752 KB
testcase_29 AC 27 ms
10,752 KB
testcase_30 AC 27 ms
10,752 KB
testcase_31 AC 26 ms
10,880 KB
testcase_32 AC 26 ms
10,752 KB
testcase_33 AC 26 ms
10,880 KB
testcase_34 AC 26 ms
10,752 KB
testcase_35 AC 25 ms
10,752 KB
testcase_36 AC 26 ms
10,880 KB
testcase_37 AC 26 ms
10,752 KB
testcase_38 AC 44 ms
11,776 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections, itertools

F = lambda i,j : (j[1]-i[1])/(j[0]-i[0]) if j[0]-i[0] != 0 else None

N = int(input())

P = []
for i in range(N):
  P.append(list(map(int, input().split(' '))))

lst = []
dic = {}

for x, y in itertools.combinations(range(len(P)), r=2):
  a = F(P[x], P[y])
  b = P[x][1] - a*P[x][1] if a != None else P[x][0]
  A = str(a) + '_' + str(b)
  lst.append(A)
  try:
    dic[A].append(x)
    dic[A].append(y)
  except:
    dic[A] = [x, y]

c = collections.Counter(lst)
print(len(set(dic[c.most_common(1)[0][0]])))
0