結果

問題 No.1265 Balloon Survival
ユーザー H20H20
提出日時 2021-08-20 15:44:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 870 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,620 KB
実行使用メモリ 152,028 KB
最終ジャッジ日時 2024-10-13 18:51:13
合計ジャッジ時間 11,844 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 33 ms
51,712 KB
testcase_02 AC 33 ms
51,968 KB
testcase_03 AC 32 ms
51,968 KB
testcase_04 AC 34 ms
51,584 KB
testcase_05 AC 33 ms
52,096 KB
testcase_06 AC 34 ms
52,096 KB
testcase_07 AC 36 ms
52,480 KB
testcase_08 AC 35 ms
51,456 KB
testcase_09 AC 33 ms
51,712 KB
testcase_10 AC 34 ms
52,352 KB
testcase_11 AC 33 ms
51,712 KB
testcase_12 AC 34 ms
52,224 KB
testcase_13 AC 34 ms
51,968 KB
testcase_14 AC 102 ms
76,928 KB
testcase_15 AC 84 ms
71,936 KB
testcase_16 AC 57 ms
65,536 KB
testcase_17 AC 459 ms
123,708 KB
testcase_18 AC 68 ms
68,096 KB
testcase_19 AC 59 ms
65,664 KB
testcase_20 AC 102 ms
76,032 KB
testcase_21 AC 193 ms
95,616 KB
testcase_22 AC 143 ms
88,832 KB
testcase_23 AC 158 ms
93,056 KB
testcase_24 AC 821 ms
151,900 KB
testcase_25 AC 816 ms
151,896 KB
testcase_26 AC 837 ms
151,512 KB
testcase_27 AC 855 ms
151,236 KB
testcase_28 AC 825 ms
151,392 KB
testcase_29 AC 870 ms
151,760 KB
testcase_30 AC 823 ms
151,856 KB
testcase_31 AC 840 ms
151,776 KB
testcase_32 AC 866 ms
151,588 KB
testcase_33 AC 817 ms
152,028 KB
testcase_34 AC 34 ms
51,840 KB
testcase_35 AC 34 ms
51,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
XY = []
for i in range(N):
    XY.append(list(map(int,input().split())))

XYD = []
for i in range(N):
    for j in range(i+1,N):
        XYD.append([i,j,(XY[i][0]-XY[j][0])**2+(XY[i][1]-XY[j][1])**2])

XYD = sorted(XYD, key=lambda x: x[2])
cnt = 0
B = [False]*N
for i,j,d in XYD:
    if B[i]==False and B[j]==False:
        if i==0:
            cnt+=1
            B[j]=True
        else:
            B[i]=True
            B[j]=True
print(cnt)
0