結果

問題 No.1265 Balloon Survival
ユーザー FromBooskaFromBooska
提出日時 2023-03-11 08:09:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,700 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 131,268 KB
最終ジャッジ日時 2024-09-18 06:13:35
合計ジャッジ時間 20,740 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 37 ms
52,244 KB
testcase_06 AC 37 ms
52,480 KB
testcase_07 AC 42 ms
51,712 KB
testcase_08 AC 38 ms
51,712 KB
testcase_09 AC 38 ms
51,328 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 38 ms
52,480 KB
testcase_12 AC 38 ms
51,840 KB
testcase_13 AC 39 ms
52,352 KB
testcase_14 AC 174 ms
72,448 KB
testcase_15 AC 139 ms
69,376 KB
testcase_16 AC 76 ms
62,464 KB
testcase_17 AC 765 ms
100,696 KB
testcase_18 AC 91 ms
65,920 KB
testcase_19 AC 79 ms
62,976 KB
testcase_20 AC 168 ms
71,936 KB
testcase_21 AC 378 ms
96,696 KB
testcase_22 AC 211 ms
75,776 KB
testcase_23 AC 234 ms
77,440 KB
testcase_24 AC 1,623 ms
129,240 KB
testcase_25 AC 1,644 ms
129,800 KB
testcase_26 AC 1,644 ms
131,204 KB
testcase_27 AC 1,617 ms
130,572 KB
testcase_28 AC 1,658 ms
131,108 KB
testcase_29 AC 1,687 ms
131,268 KB
testcase_30 AC 1,616 ms
131,128 KB
testcase_31 AC 1,644 ms
130,184 KB
testcase_32 AC 1,700 ms
130,312 KB
testcase_33 AC 1,632 ms
130,264 KB
testcase_34 AC 39 ms
52,096 KB
testcase_35 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    XY = []
    for i in range(N):
        x, y = map(int, input().split())
        XY.append((x, y))

    d_list = []
    for i in range(N):
        for j in range(i+1, N):
            d = (XY[i][0]-XY[j][0])**2 + (XY[i][1]-XY[j][1])**2
            d_list.append((d, i, j))

    d_list.sort()
        
    #print(d_list)
    
    ans = 0
    pop = [0]*N
    for d, i, j in d_list:
        if i == 0 and pop[j] == 0:
            ans += 1
            pop[j] = 1
        elif pop[i] == 0 and pop[j] == 0:
            pop[i] = 1
            pop[j] = 1
    print(ans) 
    
main()
0