結果

問題 No.1265 Balloon Survival
ユーザー gr1msl3ygr1msl3y
提出日時 2022-05-22 21:01:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 967 ms / 2,000 ms
コード長 586 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 148,216 KB
最終ジャッジ日時 2024-09-20 12:53:52
合計ジャッジ時間 12,125 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 45 ms
51,840 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 43 ms
52,096 KB
testcase_10 AC 37 ms
52,224 KB
testcase_11 AC 38 ms
52,224 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 117 ms
75,776 KB
testcase_15 AC 98 ms
72,192 KB
testcase_16 AC 68 ms
64,896 KB
testcase_17 AC 437 ms
121,720 KB
testcase_18 AC 75 ms
67,840 KB
testcase_19 AC 67 ms
65,536 KB
testcase_20 AC 111 ms
75,392 KB
testcase_21 AC 210 ms
95,872 KB
testcase_22 AC 165 ms
88,704 KB
testcase_23 AC 175 ms
92,928 KB
testcase_24 AC 862 ms
147,696 KB
testcase_25 AC 834 ms
147,968 KB
testcase_26 AC 868 ms
148,216 KB
testcase_27 AC 848 ms
147,828 KB
testcase_28 AC 850 ms
147,704 KB
testcase_29 AC 887 ms
147,956 KB
testcase_30 AC 856 ms
148,088 KB
testcase_31 AC 850 ms
148,172 KB
testcase_32 AC 967 ms
147,960 KB
testcase_33 AC 859 ms
147,784 KB
testcase_34 AC 40 ms
52,608 KB
testcase_35 AC 37 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    A = [list(map(int, input().split())) for _ in range(N)]
    seen = [0]*N

    task = []
    for i in range(N):
        xi, yi = A[i]
        for j in range(i+1, N):
            xj, yj = A[j]
            d = (xi-xj)**2+(yi-yj)**2
            task.append([d, i, j])

    task.sort(key=lambda x: x[0])
    ans = 0
    for _, indi, indj in task:
        if seen[indi] or seen[indj]:
            continue
        if indi > 0:
            seen[indi] = seen[indj] = 1
        else:
            ans += 1
            seen[indj] += 1

    print(ans)


main()
0