結果

問題 No.245 貫け!
ユーザー TawaraTawara
提出日時 2015-07-19 01:28:53
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 524 bytes
コンパイル時間 1,251 ms
コンパイル使用メモリ 77,368 KB
実行使用メモリ 79,884 KB
最終ジャッジ日時 2023-09-22 19:05:59
合計ジャッジ時間 3,771 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
76,484 KB
testcase_01 AC 76 ms
76,556 KB
testcase_02 AC 78 ms
76,264 KB
testcase_03 AC 78 ms
76,400 KB
testcase_04 AC 76 ms
76,184 KB
testcase_05 AC 77 ms
76,576 KB
testcase_06 AC 77 ms
76,308 KB
testcase_07 AC 77 ms
76,184 KB
testcase_08 AC 98 ms
78,184 KB
testcase_09 AC 108 ms
78,988 KB
testcase_10 AC 98 ms
78,756 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations as comb
def count(x1, y1, x2, y2):
	num = 0
	for a,b,c,d in line:
		if ((x1-x2)*(b-y1) - (y1-y2)*(a-x1))*((x1-x2)*(d-y1) - (y1-y2)*(c-x1)) <= 0:
			num += 1
	if num == 39:
		print (x1, y1), (x2, y2)
	return num

N = int(raw_input())
line = [map(int,raw_input().split(" ")) for i in range(N)]
p = set([(line[i/2][(2*i)%4],line[i/2][(2*i)%4+1]) for i in range(2*N)])
max_num = 1
for p1, p2 in comb(p,2):
	tmp = count(p1[0],p1[1],p2[0],p2[1])
	if tmp > max_num:
		max_num = tmp
print max_num
0