結果

問題 No.1265 Balloon Survival
ユーザー ああいいああいい
提出日時 2022-02-19 16:32:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,218 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 151,116 KB
最終ジャッジ日時 2024-06-29 10:27:26
合計ジャッジ時間 15,955 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 41 ms
51,712 KB
testcase_07 AC 41 ms
51,712 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 42 ms
51,968 KB
testcase_10 AC 43 ms
51,584 KB
testcase_11 AC 42 ms
52,096 KB
testcase_12 AC 45 ms
52,608 KB
testcase_13 AC 41 ms
51,968 KB
testcase_14 AC 141 ms
76,288 KB
testcase_15 AC 113 ms
72,320 KB
testcase_16 AC 72 ms
64,640 KB
testcase_17 AC 585 ms
122,336 KB
testcase_18 AC 85 ms
67,840 KB
testcase_19 AC 73 ms
65,024 KB
testcase_20 AC 138 ms
76,160 KB
testcase_21 AC 266 ms
94,720 KB
testcase_22 AC 198 ms
89,728 KB
testcase_23 AC 210 ms
91,264 KB
testcase_24 AC 1,218 ms
151,116 KB
testcase_25 AC 1,186 ms
150,864 KB
testcase_26 AC 1,182 ms
150,728 KB
testcase_27 AC 1,174 ms
150,824 KB
testcase_28 AC 1,175 ms
150,988 KB
testcase_29 AC 1,209 ms
150,860 KB
testcase_30 AC 1,198 ms
150,808 KB
testcase_31 AC 1,153 ms
150,992 KB
testcase_32 AC 1,172 ms
150,992 KB
testcase_33 AC 1,146 ms
150,860 KB
testcase_34 AC 41 ms
52,224 KB
testcase_35 AC 41 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
x = [0] * N
y = [0] * N
for i in range(N):
    x[i],y[i] = map(int,input().split())
l = []
for i in range(N):
    for j in range(i+1,N):
        s = (x[i]-x[j]) ** 2
        t = (y[i]-y[j]) ** 2
        l.append((s+t,i,j))
l.sort(key = lambda x:x[0])
s = set()
ans = 0
for d,i,j in l:
    if i == 0 or j == 0:
        if j == 0:
            i,j = j,i
        if j not in s:
            ans += 1
            s.add(j)
    else:
        if i not in s and j not in s:
            s.add(i)
            s.add(j)
print(ans)
0