結果

問題 No.1265 Balloon Survival
ユーザー ryu19ryu19
提出日時 2020-10-23 22:22:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,702 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 87,164 KB
最終ジャッジ日時 2024-07-21 11:01:23
合計ジャッジ時間 21,132 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 203 ms
18,944 KB
testcase_15 AC 127 ms
16,512 KB
testcase_16 AC 60 ms
12,672 KB
testcase_17 AC 824 ms
50,528 KB
testcase_18 AC 80 ms
13,696 KB
testcase_19 AC 64 ms
13,056 KB
testcase_20 AC 169 ms
18,688 KB
testcase_21 AC 376 ms
29,300 KB
testcase_22 AC 227 ms
22,016 KB
testcase_23 AC 255 ms
23,168 KB
testcase_24 AC 1,668 ms
86,164 KB
testcase_25 AC 1,668 ms
87,060 KB
testcase_26 AC 1,700 ms
87,036 KB
testcase_27 AC 1,672 ms
87,056 KB
testcase_28 AC 1,663 ms
87,032 KB
testcase_29 AC 1,672 ms
87,036 KB
testcase_30 AC 1,702 ms
87,164 KB
testcase_31 AC 1,699 ms
86,992 KB
testcase_32 AC 1,693 ms
86,804 KB
testcase_33 AC 1,686 ms
87,064 KB
testcase_34 AC 30 ms
10,752 KB
testcase_35 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
x = [None] * N
y = [None] * N
for i in range(N):
    x[i], y[i] = map(int, input().split())

INF = 10 ** 12
burst = []
for i in range(N):
    for j in range(i + 1, N):
        res = (x[j] - x[i]) ** 2 + (y[j] - y[i]) ** 2
        burst.append((res, i, j))
burst.sort()

baloon = set()
cnt = 0
for b, i, j in burst:
    if i in baloon or j in baloon:
        continue
    if i == 0:
        cnt += 1
        baloon.add(j)
        continue
    else:
        baloon.add(i)
        baloon.add(j)
print(cnt)
0