結果

問題 No.1265 Balloon Survival
ユーザー ayaoniayaoni
提出日時 2020-10-24 07:25:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,559 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 138,940 KB
最終ジャッジ日時 2024-07-21 14:56:29
合計ジャッジ時間 19,306 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,400 KB
testcase_01 AC 37 ms
53,268 KB
testcase_02 AC 37 ms
52,628 KB
testcase_03 AC 38 ms
52,744 KB
testcase_04 AC 38 ms
53,876 KB
testcase_05 AC 38 ms
52,884 KB
testcase_06 AC 39 ms
52,596 KB
testcase_07 AC 38 ms
53,340 KB
testcase_08 AC 38 ms
52,592 KB
testcase_09 AC 38 ms
52,656 KB
testcase_10 AC 38 ms
52,468 KB
testcase_11 AC 38 ms
53,200 KB
testcase_12 AC 38 ms
53,704 KB
testcase_13 AC 38 ms
52,256 KB
testcase_14 AC 164 ms
83,428 KB
testcase_15 AC 139 ms
82,432 KB
testcase_16 AC 65 ms
69,276 KB
testcase_17 AC 723 ms
105,540 KB
testcase_18 AC 84 ms
74,732 KB
testcase_19 AC 72 ms
70,104 KB
testcase_20 AC 165 ms
83,500 KB
testcase_21 AC 341 ms
92,904 KB
testcase_22 AC 202 ms
83,724 KB
testcase_23 AC 229 ms
86,948 KB
testcase_24 AC 1,530 ms
137,352 KB
testcase_25 AC 1,511 ms
138,160 KB
testcase_26 AC 1,559 ms
138,940 KB
testcase_27 AC 1,508 ms
138,500 KB
testcase_28 AC 1,480 ms
138,816 KB
testcase_29 AC 1,517 ms
138,616 KB
testcase_30 AC 1,506 ms
138,616 KB
testcase_31 AC 1,520 ms
138,636 KB
testcase_32 AC 1,510 ms
138,456 KB
testcase_33 AC 1,526 ms
138,300 KB
testcase_34 AC 38 ms
53,204 KB
testcase_35 AC 38 ms
53,024 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)<<20) + (i<<10) + j)

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

ans = 0
for a in dist:
    i = (a>>10)&((1<<10)-1)
    j = a&((1<<10)-1)
    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