結果

問題 No.1265 Balloon Survival
ユーザー proriboneproribone
提出日時 2020-10-24 00:19:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,860 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 152,232 KB
最終ジャッジ日時 2024-07-21 14:10:55
合計ジャッジ時間 22,217 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,744 KB
testcase_01 AC 35 ms
52,836 KB
testcase_02 AC 36 ms
53,408 KB
testcase_03 AC 38 ms
52,940 KB
testcase_04 AC 38 ms
53,084 KB
testcase_05 AC 38 ms
53,372 KB
testcase_06 AC 37 ms
52,464 KB
testcase_07 AC 36 ms
53,660 KB
testcase_08 AC 39 ms
52,872 KB
testcase_09 AC 36 ms
53,560 KB
testcase_10 AC 37 ms
53,964 KB
testcase_11 AC 37 ms
52,840 KB
testcase_12 AC 37 ms
52,816 KB
testcase_13 AC 37 ms
52,520 KB
testcase_14 AC 178 ms
75,876 KB
testcase_15 AC 138 ms
73,332 KB
testcase_16 AC 74 ms
64,964 KB
testcase_17 AC 797 ms
101,752 KB
testcase_18 AC 95 ms
68,140 KB
testcase_19 AC 79 ms
65,300 KB
testcase_20 AC 175 ms
76,080 KB
testcase_21 AC 411 ms
94,476 KB
testcase_22 AC 224 ms
78,920 KB
testcase_23 AC 251 ms
80,560 KB
testcase_24 AC 1,809 ms
150,232 KB
testcase_25 AC 1,744 ms
131,652 KB
testcase_26 AC 1,720 ms
132,268 KB
testcase_27 AC 1,747 ms
131,136 KB
testcase_28 AC 1,721 ms
132,260 KB
testcase_29 AC 1,860 ms
152,232 KB
testcase_30 AC 1,749 ms
132,332 KB
testcase_31 AC 1,746 ms
131,092 KB
testcase_32 AC 1,850 ms
151,124 KB
testcase_33 AC 1,743 ms
131,500 KB
testcase_34 AC 38 ms
53,216 KB
testcase_35 AC 37 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dist(p,q):
    a,b=p[0]-q[0],p[1]-q[1]
    return a**2+b**2
    
N=int(input())
point=[tuple(map(int,input().split())) for _ in range(N)]
G=[]

isv=[True]*N

for i in range(N):
    for j in range(i+1,N):
        G.append((dist(point[i],point[j]),i,j))
G.sort()
res=0
for d,i,j in G:
    if i==0:
        if isv[j]:
            res+=1
            isv[j]=False
    if j==0:
        if isv[i]:
            res+=1
            isv[i]=False
    else:
        if not isv[i] or not isv[j]:
            continue
        isv[i]=False
        isv[j]=False
print(res)
0