結果

問題 No.1265 Balloon Survival
ユーザー yuruhiyayuruhiya
提出日時 2020-10-23 22:10:51
言語 Crystal
(1.11.2)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 12,237 ms
コンパイル使用メモリ 299,116 KB
実行使用メモリ 32,640 KB
最終ジャッジ日時 2024-06-30 21:30:33
合計ジャッジ時間 14,668 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 14 ms
5,632 KB
testcase_15 AC 11 ms
5,504 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 62 ms
16,000 KB
testcase_18 AC 7 ms
5,376 KB
testcase_19 AC 5 ms
5,376 KB
testcase_20 AC 14 ms
5,632 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 19 ms
7,552 KB
testcase_23 AC 20 ms
7,680 KB
testcase_24 AC 119 ms
32,512 KB
testcase_25 AC 121 ms
32,512 KB
testcase_26 AC 121 ms
32,512 KB
testcase_27 AC 121 ms
32,512 KB
testcase_28 AC 121 ms
32,512 KB
testcase_29 AC 118 ms
28,032 KB
testcase_30 AC 122 ms
32,512 KB
testcase_31 AC 123 ms
32,384 KB
testcase_32 AC 122 ms
32,640 KB
testcase_33 AC 122 ms
32,516 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lib C
  fun strtoll(s : UInt8*, p : UInt8**, b : Int32) : Int64
end

class String
  def to_i64
    C.strtoll(self, nil, 10)
  end
end

n = read_line.to_i
x, y = (1..n).map { read_line.split.map(&.to_i64) }.transpose
dist = (0...n).flat_map { |i|
  (i + 1...n).map { |j|
    {(x[i] - x[j])**2 + (y[i] - y[j])**2, i, j}
  }
}.sort

flag = [true] * n
ans = 0
dist.each do |(d, i, j)|
  if flag[i] && flag[j]
    if i == 0
      ans += 1
      flag[j] = false
    else
      flag[i] = false
      flag[j] = false
    end
  end
end
puts ans
0