結果

問題 No.5020 Averaging
ユーザー clam010clam010
提出日時 2024-02-25 15:43:18
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 346 ms / 1,000 ms
コード長 967 bytes
コンパイル時間 14,658 ms
コンパイル使用メモリ 442,172 KB
実行使用メモリ 54,632 KB
スコア 15,723,750
最終ジャッジ日時 2024-02-25 15:43:57
合計ジャッジ時間 32,903 ms
ジャッジサーバーID
(参考情報)
judge15 / judge10
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
54,624 KB
testcase_01 AC 310 ms
54,628 KB
testcase_02 AC 331 ms
54,624 KB
testcase_03 AC 313 ms
54,620 KB
testcase_04 AC 308 ms
54,628 KB
testcase_05 AC 310 ms
54,620 KB
testcase_06 AC 340 ms
54,632 KB
testcase_07 AC 309 ms
54,624 KB
testcase_08 AC 311 ms
54,628 KB
testcase_09 AC 308 ms
54,624 KB
testcase_10 AC 332 ms
54,624 KB
testcase_11 AC 309 ms
54,624 KB
testcase_12 AC 313 ms
54,616 KB
testcase_13 AC 336 ms
54,616 KB
testcase_14 AC 311 ms
54,608 KB
testcase_15 AC 309 ms
54,616 KB
testcase_16 AC 306 ms
54,624 KB
testcase_17 AC 346 ms
54,624 KB
testcase_18 AC 313 ms
54,624 KB
testcase_19 AC 309 ms
54,628 KB
testcase_20 AC 316 ms
54,620 KB
testcase_21 AC 337 ms
54,620 KB
testcase_22 AC 311 ms
54,620 KB
testcase_23 AC 312 ms
54,624 KB
testcase_24 AC 333 ms
54,624 KB
testcase_25 AC 306 ms
54,624 KB
testcase_26 AC 310 ms
54,624 KB
testcase_27 AC 312 ms
54,624 KB
testcase_28 AC 335 ms
54,624 KB
testcase_29 AC 317 ms
54,628 KB
testcase_30 AC 310 ms
54,616 KB
testcase_31 AC 310 ms
54,608 KB
testcase_32 AC 328 ms
54,616 KB
testcase_33 AC 309 ms
54,628 KB
testcase_34 AC 313 ms
54,624 KB
testcase_35 AC 337 ms
54,624 KB
testcase_36 AC 309 ms
54,620 KB
testcase_37 AC 310 ms
54,624 KB
testcase_38 AC 310 ms
54,608 KB
testcase_39 AC 336 ms
54,616 KB
testcase_40 AC 310 ms
54,612 KB
testcase_41 AC 309 ms
54,616 KB
testcase_42 AC 310 ms
54,628 KB
testcase_43 AC 331 ms
54,624 KB
testcase_44 AC 309 ms
54,620 KB
testcase_45 AC 307 ms
54,632 KB
testcase_46 AC 305 ms
54,620 KB
testcase_47 AC 336 ms
54,608 KB
testcase_48 AC 309 ms
54,616 KB
testcase_49 AC 312 ms
54,624 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()+0.01
    val bValue = abs(cardList[i].second-c).toDouble()+0.01
    rlist.add(Pair(i,fValue*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