結果

問題 No.668 6.0*10^23
ユーザー 💕💖💞💕💖💞
提出日時 2018-04-06 21:33:42
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 556 bytes
コンパイル時間 14,590 ms
コンパイル使用メモリ 437,828 KB
実行使用メモリ 60,832 KB
最終ジャッジ日時 2024-11-20 15:41:15
合計ジャッジ時間 35,643 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 431 ms
56,056 KB
testcase_02 AC 417 ms
55,984 KB
testcase_03 AC 412 ms
55,704 KB
testcase_04 AC 422 ms
55,976 KB
testcase_05 AC 405 ms
55,660 KB
testcase_06 AC 410 ms
56,028 KB
testcase_07 AC 359 ms
55,548 KB
testcase_08 AC 362 ms
55,384 KB
testcase_09 AC 363 ms
55,360 KB
testcase_10 WA -
testcase_11 AC 448 ms
56,076 KB
testcase_12 AC 410 ms
55,892 KB
testcase_13 WA -
testcase_14 AC 418 ms
56,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 355 ms
51,328 KB
testcase_20 AC 407 ms
56,692 KB
testcase_21 AC 410 ms
55,748 KB
testcase_22 AC 426 ms
56,328 KB
testcase_23 AC 413 ms
55,912 KB
testcase_24 AC 394 ms
55,648 KB
testcase_25 AC 442 ms
56,068 KB
testcase_26 AC 366 ms
55,612 KB
testcase_27 AC 419 ms
56,840 KB
testcase_28 AC 431 ms
56,112 KB
testcase_29 AC 434 ms
57,556 KB
testcase_30 WA -
testcase_31 AC 406 ms
55,768 KB
testcase_32 AC 389 ms
55,508 KB
testcase_33 AC 414 ms
56,380 KB
testcase_34 AC 409 ms
55,800 KB
testcase_35 AC 410 ms
55,892 KB
testcase_36 AC 414 ms
56,060 KB
testcase_37 WA -
testcase_38 AC 416 ms
55,952 KB
testcase_39 AC 422 ms
56,152 KB
testcase_40 AC 430 ms
56,248 KB
testcase_41 AC 417 ms
56,088 KB
testcase_42 AC 410 ms
56,044 KB
testcase_43 AC 424 ms
56,056 KB
testcase_44 AC 384 ms
51,672 KB
testcase_45 WA -
testcase_46 AC 360 ms
55,268 KB
testcase_47 AC 360 ms
55,496 KB
testcase_48 AC 356 ms
55,240 KB
testcase_49 AC 314 ms
51,224 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val s = readLine()!!

  var size = s.length - 1
  
  val tops = s.slice(0..2)
  if(tops == "999") {
    println("1.0*10^${size+1}")
  } else {
    val (head1, head2) = listOf( tops[0], tops[1] ).map { it.toString() }
    val tail = tops.toList().last()
    if( mutableSetOf('1', '2', '3', '4').contains( tail ) ) {
      println("${head1}.${head2}*10^${size}")
    } else {
      val (up1, up2) = (tops.slice(0..1).toInt() + 1).toString().toList().map { it.toString() }
      println("${up1}.${up2}*10^${size}")
    }
  }
}
0