結果

問題 No.245 貫け!
ユーザー titiatitia
提出日時 2022-08-11 00:45:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 522 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-21 10:13:30
合計ジャッジ時間 10,364 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 WA -
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 39 ms
10,752 KB
testcase_09 AC 92 ms
10,624 KB
testcase_10 AC 120 ms
10,752 KB
testcase_11 AC 417 ms
10,752 KB
testcase_12 AC 1,064 ms
10,752 KB
testcase_13 AC 1,106 ms
10,752 KB
testcase_14 AC 1,057 ms
10,752 KB
testcase_15 AC 1,049 ms
10,880 KB
testcase_16 AC 1,018 ms
10,752 KB
testcase_17 AC 1,073 ms
10,752 KB
testcase_18 AC 1,070 ms
10,624 KB
testcase_19 AC 1,044 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 交差判定には外積を使うんだったよなー、と思って解説を見た。

N=int(input())
A=[tuple(map(int,input().split())) for i in range(N)]

def outer_product(x,y,z,w):
    return x*w-y*z

ANS=0

for x,y,_,_ in A:
    for _,_,z,w in A:
        if x==z and y==w:
            continue

        score=0

        for p,q,r,s in A:
            if outer_product(z-x,w-y,p-x,q-y)*outer_product(z-x,w-y,r-x,s-y)<=0:
                score+=1
                
        ANS=max(ANS,score)

print(ANS)
            
0