結果

問題 No.1265 Balloon Survival
ユーザー 👑 KazunKazun
提出日時 2021-12-25 03:24:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 935 ms / 2,000 ms
コード長 662 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 81,800 KB
実行使用メモリ 149,920 KB
最終ジャッジ日時 2024-09-20 03:53:53
合計ジャッジ時間 12,706 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,992 KB
testcase_01 AC 38 ms
54,372 KB
testcase_02 AC 40 ms
54,768 KB
testcase_03 AC 38 ms
54,396 KB
testcase_04 AC 38 ms
54,104 KB
testcase_05 AC 39 ms
55,184 KB
testcase_06 AC 38 ms
55,096 KB
testcase_07 AC 40 ms
54,184 KB
testcase_08 AC 39 ms
53,880 KB
testcase_09 AC 40 ms
54,088 KB
testcase_10 AC 41 ms
55,792 KB
testcase_11 AC 40 ms
54,424 KB
testcase_12 AC 41 ms
54,596 KB
testcase_13 AC 40 ms
54,296 KB
testcase_14 AC 113 ms
77,772 KB
testcase_15 AC 92 ms
74,352 KB
testcase_16 AC 62 ms
67,844 KB
testcase_17 AC 452 ms
115,768 KB
testcase_18 AC 71 ms
69,772 KB
testcase_19 AC 65 ms
67,696 KB
testcase_20 AC 106 ms
78,344 KB
testcase_21 AC 207 ms
96,180 KB
testcase_22 AC 145 ms
89,096 KB
testcase_23 AC 163 ms
91,056 KB
testcase_24 AC 870 ms
149,272 KB
testcase_25 AC 879 ms
149,112 KB
testcase_26 AC 872 ms
139,252 KB
testcase_27 AC 888 ms
149,492 KB
testcase_28 AC 879 ms
149,724 KB
testcase_29 AC 918 ms
149,804 KB
testcase_30 AC 855 ms
149,920 KB
testcase_31 AC 878 ms
148,928 KB
testcase_32 AC 935 ms
149,656 KB
testcase_33 AC 878 ms
138,500 KB
testcase_34 AC 41 ms
54,836 KB
testcase_35 AC 39 ms
54,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from operator import itemgetter

import sys
input=sys.stdin.readline

def main():
    N=int(input())
    P=[0]*N

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

    Q=[]
    k=0
    for i in range(N):
        for j in range(i+1,N):
            a,b=P[i][0]-P[j][0],P[i][1]-P[j][1]
            Q.append((a*a+b*b,j,i))

    Q.sort(key=itemgetter(0))
    Q=deque(Q)
    Flag=[1]*N

    X=0
    for _,j,i in Q:
        if not(Flag[i] and Flag[j]):
            continue

        Flag[j]=0
        if i!=0:
            Flag[i]=0
        else:
            X+=1
    return X

if __name__=="__main__":
    print(main())
0