結果

問題 No.668 6.0*10^23
ユーザー 💕💖💞💕💖💞
提出日時 2018-06-06 22:48:41
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 544 bytes
コンパイル時間 12,793 ms
コンパイル使用メモリ 439,908 KB
実行使用メモリ 59,688 KB
最終ジャッジ日時 2024-11-20 16:11:31
合計ジャッジ時間 36,086 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 329 ms
51,732 KB
testcase_01 WA -
testcase_02 AC 434 ms
56,296 KB
testcase_03 AC 412 ms
54,712 KB
testcase_04 AC 418 ms
55,380 KB
testcase_05 AC 398 ms
53,208 KB
testcase_06 AC 423 ms
55,224 KB
testcase_07 AC 326 ms
51,728 KB
testcase_08 AC 323 ms
51,640 KB
testcase_09 AC 320 ms
51,644 KB
testcase_10 AC 413 ms
54,340 KB
testcase_11 WA -
testcase_12 AC 407 ms
54,084 KB
testcase_13 AC 462 ms
59,208 KB
testcase_14 AC 441 ms
57,356 KB
testcase_15 AC 381 ms
52,776 KB
testcase_16 AC 394 ms
53,420 KB
testcase_17 AC 451 ms
58,668 KB
testcase_18 AC 420 ms
55,832 KB
testcase_19 AC 396 ms
53,448 KB
testcase_20 AC 430 ms
56,152 KB
testcase_21 AC 432 ms
55,932 KB
testcase_22 AC 457 ms
58,644 KB
testcase_23 AC 434 ms
56,632 KB
testcase_24 AC 390 ms
53,256 KB
testcase_25 AC 455 ms
58,868 KB
testcase_26 AC 345 ms
51,932 KB
testcase_27 AC 472 ms
56,444 KB
testcase_28 AC 491 ms
58,864 KB
testcase_29 AC 417 ms
54,780 KB
testcase_30 AC 460 ms
58,992 KB
testcase_31 AC 430 ms
55,848 KB
testcase_32 AC 388 ms
52,988 KB
testcase_33 AC 453 ms
57,760 KB
testcase_34 AC 415 ms
54,288 KB
testcase_35 AC 410 ms
53,972 KB
testcase_36 AC 447 ms
57,012 KB
testcase_37 AC 451 ms
58,944 KB
testcase_38 AC 423 ms
55,740 KB
testcase_39 WA -
testcase_40 AC 455 ms
58,888 KB
testcase_41 AC 443 ms
57,584 KB
testcase_42 AC 423 ms
55,096 KB
testcase_43 AC 454 ms
58,324 KB
testcase_44 AC 458 ms
59,688 KB
testcase_45 AC 324 ms
51,496 KB
testcase_46 AC 325 ms
51,672 KB
testcase_47 AC 326 ms
51,516 KB
testcase_48 AC 326 ms
51,448 KB
testcase_49 AC 323 ms
51,488 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^
Main.kt:4:7: warning: variable 'buff' is never used
  val buff = mutableListOf<Int>()
      ^

ソースコード

diff #

fun main(args:Array<String>) {
  val input = readLine()!!.toList().map { it.toString().toInt() }.reversed().toMutableList()

  val buff = mutableListOf<Int>()
  // round op
  for( c in (0..input.size-1-1-1) ) {
    if( input[c] >= 5 ) input[c+1] += 1
  }
  if( input[input.size-2] >= 10 ) {
    input[input.size-2] = 0
    input[input.size-1] += 1
  }
  if( input[input.size-1] >= 10 ) {
    input[input.size-1] = 0
    input.add( 1 )
  }
  val r = input.reversed()
  val h1 = r[0]
  val h2 = r[1]

  println("${h1}.${h2}*10^${input.size-1}")
}
0