結果

問題 No.1265 Balloon Survival
ユーザー kohei2019kohei2019
提出日時 2022-07-19 21:57:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,852 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 152,020 KB
最終ジャッジ日時 2024-07-02 01:52:03
合計ジャッジ時間 22,032 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,340 KB
testcase_01 AC 39 ms
52,908 KB
testcase_02 AC 39 ms
52,980 KB
testcase_03 AC 40 ms
52,148 KB
testcase_04 AC 39 ms
53,352 KB
testcase_05 AC 40 ms
53,688 KB
testcase_06 AC 40 ms
52,952 KB
testcase_07 AC 39 ms
52,500 KB
testcase_08 AC 38 ms
52,448 KB
testcase_09 AC 39 ms
52,420 KB
testcase_10 AC 39 ms
52,584 KB
testcase_11 AC 39 ms
52,684 KB
testcase_12 AC 39 ms
52,476 KB
testcase_13 AC 40 ms
53,708 KB
testcase_14 AC 177 ms
75,880 KB
testcase_15 AC 138 ms
71,736 KB
testcase_16 AC 76 ms
64,760 KB
testcase_17 AC 779 ms
101,640 KB
testcase_18 AC 96 ms
68,084 KB
testcase_19 AC 83 ms
64,420 KB
testcase_20 AC 181 ms
75,560 KB
testcase_21 AC 421 ms
94,564 KB
testcase_22 AC 227 ms
78,908 KB
testcase_23 AC 255 ms
80,168 KB
testcase_24 AC 1,714 ms
130,352 KB
testcase_25 AC 1,751 ms
131,436 KB
testcase_26 AC 1,748 ms
132,240 KB
testcase_27 AC 1,743 ms
131,360 KB
testcase_28 AC 1,773 ms
132,252 KB
testcase_29 AC 1,852 ms
152,020 KB
testcase_30 AC 1,754 ms
132,400 KB
testcase_31 AC 1,751 ms
131,500 KB
testcase_32 AC 1,758 ms
131,824 KB
testcase_33 AC 1,678 ms
131,056 KB
testcase_34 AC 41 ms
52,892 KB
testcase_35 AC 39 ms
52,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsxy = [tuple(map(int,input().split())) for i in range(N)]
ls = []
for i in range(N-1):
    for j in range(i+1,N):
        dist = (lsxy[i][0]-lsxy[j][0])**2 + (lsxy[i][1]-lsxy[j][1])**2
        ls.append((dist,i,j))
ls.sort()
setrm = []
used = [False]*N
for i in range(len(ls)):
    d,a,b = ls[i]
    if a == 0 and used[b] == False:
        used[b] = True
        setrm.append(b)
    elif used[a] or used[b]:
        continue
    else:
        used[a] = True
        used[b] = True
print(len(setrm))
0