結果
問題 | No.1265 Balloon Survival |
ユーザー | c-yan |
提出日時 | 2020-10-23 22:49:20 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 1,877 ms / 2,000 ms |
コード長 | 471 bytes |
コンパイル時間 | 105 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 87,368 KB |
最終ジャッジ日時 | 2024-07-21 11:53:08 |
合計ジャッジ時間 | 22,603 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 32 |
ソースコード
N = int(input()) xy = [tuple(map(int, input().split())) for _ in range(N)] a = [] for i in range(N - 1): for j in range(i + 1, N): d = (xy[i][0] - xy[j][0]) * (xy[i][0] - xy[j][0]) + (xy[i][1] - xy[j][1]) * (xy[i][1] - xy[j][1]) a.append((d, i, j)) a.sort() result = 0 t = set() for _, i, j in a: if i in t or j in t: continue if i == 0: result += 1 t.add(j) else: t.add(i) t.add(j) print(result)