結果

問題 No.1265 Balloon Survival
ユーザー MineMine
提出日時 2020-12-03 23:41:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,659 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 131,328 KB
最終ジャッジ日時 2024-09-14 09:07:47
合計ジャッジ時間 21,000 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 42 ms
52,224 KB
testcase_07 AC 43 ms
51,840 KB
testcase_08 AC 42 ms
51,840 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 42 ms
51,968 KB
testcase_11 AC 42 ms
51,840 KB
testcase_12 AC 42 ms
52,224 KB
testcase_13 AC 42 ms
52,096 KB
testcase_14 AC 221 ms
83,456 KB
testcase_15 AC 176 ms
81,024 KB
testcase_16 AC 112 ms
77,184 KB
testcase_17 AC 785 ms
108,068 KB
testcase_18 AC 128 ms
78,336 KB
testcase_19 AC 114 ms
77,312 KB
testcase_20 AC 210 ms
83,332 KB
testcase_21 AC 390 ms
88,444 KB
testcase_22 AC 262 ms
86,016 KB
testcase_23 AC 283 ms
87,296 KB
testcase_24 AC 1,607 ms
130,944 KB
testcase_25 AC 1,630 ms
130,688 KB
testcase_26 AC 1,607 ms
130,304 KB
testcase_27 AC 1,629 ms
130,560 KB
testcase_28 AC 1,597 ms
130,944 KB
testcase_29 AC 1,659 ms
131,072 KB
testcase_30 AC 1,610 ms
130,176 KB
testcase_31 AC 1,596 ms
130,432 KB
testcase_32 AC 1,625 ms
131,328 KB
testcase_33 AC 1,611 ms
130,492 KB
testcase_34 AC 44 ms
52,608 KB
testcase_35 AC 42 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def distance(X, Y):
    return abs(X[0] - Y[0])**2 + abs(X[1] - Y[1])**2

n = int(input())
xy = [list(map(int, input().split())) for _ in range(n)]
d = []

for i in range(n):
    for g in range(i+1, n):
        d.append((distance(xy[i], xy[g]), (i, g)))
d.sort()

cnt = 0
used = [False]*n

for i, x in d:
    if used[x[0]] or used[x[1]]:
        continue
    if x[0] == 0:
        cnt += 1
        used[x[1]] = True
    else:
        used[x[0]] = True
        used[x[1]] = True

print(cnt)

0