結果

問題 No.1265 Balloon Survival
ユーザー ayaoniayaoni
提出日時 2020-10-24 07:08:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,787 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 133,764 KB
最終ジャッジ日時 2024-07-21 14:56:08
合計ジャッジ時間 21,639 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,944 KB
testcase_01 AC 41 ms
52,840 KB
testcase_02 AC 41 ms
52,616 KB
testcase_03 AC 38 ms
52,064 KB
testcase_04 AC 38 ms
52,696 KB
testcase_05 AC 38 ms
52,460 KB
testcase_06 AC 38 ms
53,076 KB
testcase_07 AC 38 ms
53,824 KB
testcase_08 AC 38 ms
53,688 KB
testcase_09 AC 39 ms
52,936 KB
testcase_10 AC 37 ms
52,984 KB
testcase_11 AC 39 ms
53,472 KB
testcase_12 AC 37 ms
53,124 KB
testcase_13 AC 37 ms
52,280 KB
testcase_14 AC 176 ms
74,072 KB
testcase_15 AC 135 ms
70,404 KB
testcase_16 AC 73 ms
63,520 KB
testcase_17 AC 794 ms
102,392 KB
testcase_18 AC 92 ms
67,152 KB
testcase_19 AC 80 ms
64,032 KB
testcase_20 AC 171 ms
74,356 KB
testcase_21 AC 400 ms
97,296 KB
testcase_22 AC 217 ms
78,940 KB
testcase_23 AC 237 ms
78,712 KB
testcase_24 AC 1,750 ms
131,572 KB
testcase_25 AC 1,787 ms
132,464 KB
testcase_26 AC 1,766 ms
133,252 KB
testcase_27 AC 1,755 ms
132,736 KB
testcase_28 AC 1,744 ms
133,764 KB
testcase_29 AC 1,741 ms
133,620 KB
testcase_30 AC 1,720 ms
133,640 KB
testcase_31 AC 1,696 ms
132,748 KB
testcase_32 AC 1,769 ms
132,472 KB
testcase_33 AC 1,713 ms
132,288 KB
testcase_34 AC 38 ms
53,548 KB
testcase_35 AC 37 ms
53,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())


N = I()
xy = [tuple(MI()) for _ in range(N)]
dist = []
for i in range(N-1):
    x0,y0 = xy[i]
    for j in range(i+1,N):
        x1,y1 = xy[j]
        dist.append(((x0-x1)**2+(y0-y1)**2,i,j))

dist.sort()
left = [1]*N

ans = 0
for d,i,j in dist:
    if left[i] == 0 or left[j] == 0:
        continue
    if i == 0:
        ans += 1
        left[j] = 0
    else:
        left[i] = 0
        left[j] = 0

print(ans)
0