結果

問題 No.5020 Averaging
ユーザー clam010clam010
提出日時 2024-02-25 16:02:16
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 338 ms / 1,000 ms
コード長 977 bytes
コンパイル時間 16,436 ms
コンパイル使用メモリ 453,636 KB
実行使用メモリ 54,628 KB
スコア 17,441,164
最終ジャッジ日時 2024-02-25 16:02:53
合計ジャッジ時間 32,260 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 326 ms
54,620 KB
testcase_01 AC 306 ms
54,628 KB
testcase_02 AC 302 ms
54,616 KB
testcase_03 AC 337 ms
54,624 KB
testcase_04 AC 310 ms
54,616 KB
testcase_05 AC 308 ms
54,628 KB
testcase_06 AC 306 ms
54,624 KB
testcase_07 AC 329 ms
54,628 KB
testcase_08 AC 298 ms
54,612 KB
testcase_09 AC 302 ms
54,628 KB
testcase_10 AC 303 ms
54,620 KB
testcase_11 AC 332 ms
54,628 KB
testcase_12 AC 300 ms
54,628 KB
testcase_13 AC 305 ms
54,624 KB
testcase_14 AC 301 ms
54,616 KB
testcase_15 AC 307 ms
54,624 KB
testcase_16 AC 304 ms
54,620 KB
testcase_17 AC 301 ms
54,624 KB
testcase_18 AC 338 ms
54,608 KB
testcase_19 AC 308 ms
54,612 KB
testcase_20 AC 304 ms
54,616 KB
testcase_21 AC 304 ms
54,620 KB
testcase_22 AC 335 ms
54,616 KB
testcase_23 AC 306 ms
54,616 KB
testcase_24 AC 303 ms
54,624 KB
testcase_25 AC 307 ms
54,620 KB
testcase_26 AC 325 ms
54,616 KB
testcase_27 AC 306 ms
54,624 KB
testcase_28 AC 306 ms
54,624 KB
testcase_29 AC 330 ms
54,628 KB
testcase_30 AC 327 ms
54,616 KB
testcase_31 AC 307 ms
54,616 KB
testcase_32 AC 304 ms
54,624 KB
testcase_33 AC 332 ms
54,624 KB
testcase_34 AC 300 ms
54,624 KB
testcase_35 AC 302 ms
54,628 KB
testcase_36 AC 299 ms
54,628 KB
testcase_37 AC 324 ms
54,628 KB
testcase_38 AC 301 ms
54,624 KB
testcase_39 AC 304 ms
54,612 KB
testcase_40 AC 330 ms
54,624 KB
testcase_41 AC 304 ms
54,624 KB
testcase_42 AC 304 ms
54,612 KB
testcase_43 AC 304 ms
54,616 KB
testcase_44 AC 333 ms
54,616 KB
testcase_45 AC 328 ms
54,628 KB
testcase_46 AC 301 ms
54,616 KB
testcase_47 AC 296 ms
54,608 KB
testcase_48 AC 326 ms
54,624 KB
testcase_49 AC 299 ms
54,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*
import kotlin.math.*
fun main(){
  val N = readLine()!!.toInt()
  val cardList = mutableListOf<Pair<Long,Long>>()
  repeat(N){
    val (a,b) = readLine()!!.split(" ").map{it.toLong()}
    cardList.add(Pair(a,b))
  }
  val c = 500000000000000000L
  val rlist = mutableListOf<Pair<Int,Double>>()
  for(i in 0..N-1){
    val fValue = abs(cardList[i].first-c).toDouble()
    val bValue = abs(cardList[i].second-c).toDouble()
    rlist.add(Pair(i,sqrt(fValue*fValue+bValue*bValue)))
  }
  rlist.sortBy{it.second}
  val stack = ArrayDeque<Int>()
  var count = 0
  for(i in 0..N-1){
    if(count>=50)break
    if(rlist[i].first==0)break
    stack.add(rlist[i].first)
    count++
  }
  val ansList = mutableListOf<Pair<Int,Int>>()
  for(i in 0..stack.size-1){
    val p = stack.removeLast()
    ansList.add(Pair(0,p))
  }
  println(ansList.size)
  for(i in 0..ansList.size-1){
    val u = ansList[i].first+1
    val v = ansList[i].second+1
    println("$u $v")
  }
}
0