結果

問題 No.245 貫け!
ユーザー rlangevinrlangevin
提出日時 2023-10-23 12:43:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 5,000 ms
コード長 793 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 74,620 KB
最終ジャッジ日時 2024-09-22 10:04:26
合計ジャッジ時間 2,407 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,228 KB
testcase_01 AC 43 ms
52,600 KB
testcase_02 AC 39 ms
53,352 KB
testcase_03 AC 38 ms
52,824 KB
testcase_04 AC 39 ms
53,356 KB
testcase_05 AC 40 ms
54,368 KB
testcase_06 AC 40 ms
53,932 KB
testcase_07 AC 38 ms
52,624 KB
testcase_08 AC 54 ms
65,304 KB
testcase_09 AC 66 ms
71,732 KB
testcase_10 AC 67 ms
70,712 KB
testcase_11 AC 82 ms
72,332 KB
testcase_12 AC 113 ms
73,088 KB
testcase_13 AC 108 ms
73,296 KB
testcase_14 AC 110 ms
72,992 KB
testcase_15 AC 104 ms
73,224 KB
testcase_16 AC 106 ms
72,424 KB
testcase_17 AC 107 ms
72,936 KB
testcase_18 AC 107 ms
72,916 KB
testcase_19 AC 105 ms
74,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = []
a, b, c, d = [-1] * N, [-1] * N, [-1] * N, [-1] * N
for i in range(N):
    a[i], b[i], c[i], d[i] = map(int, input().split())
    X.append((a[i], b[i]))
    X.append((c[i], d[i]))

def f(x1, y1, x2, y2, x3, y3):
    x12 = x2 - x1
    x13 = x3 - x1
    y12 = y2 - y1
    y13 = y3 - y1
    return x12 * y13 - x13 * y12

def solve(x1, y1, x2, y2, x3, y3, x4, y4):
    if f(x1, y1, x2, y2, x3, y3) * f(x1, y1, x2, y2, x4, y4) > 0:
        return 0
    return 1

ans = 0
for i in range(2 * N):
    for j in range(i + 1, 2 * N):
        x1, y1 = X[i]
        x2, y2 = X[j]
        if x1 == x2 and y1 == y2:
            continue
        val = 0
        for k in range(N):
            val += solve(x1, y1, x2, y2, a[k], b[k], c[k], d[k])
        ans = max(ans, val)

print(ans)
0