結果

問題 No.701 ひとりしりとり
ユーザー 💕💖💞💕💖💞
提出日時 2018-06-16 03:14:23
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 469 bytes
コンパイル時間 11,240 ms
コンパイル使用メモリ 449,120 KB
実行使用メモリ 108,588 KB
最終ジャッジ日時 2024-11-20 16:24:34
合計ジャッジ時間 18,030 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
52,188 KB
testcase_01 AC 350 ms
53,572 KB
testcase_02 AC 348 ms
53,712 KB
testcase_03 AC 361 ms
53,808 KB
testcase_04 AC 362 ms
54,032 KB
testcase_05 AC 367 ms
53,892 KB
testcase_06 AC 351 ms
53,840 KB
testcase_07 AC 347 ms
53,920 KB
testcase_08 AC 386 ms
53,868 KB
testcase_09 AC 513 ms
59,408 KB
testcase_10 AC 642 ms
81,268 KB
testcase_11 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val n = readLine()!!.toInt()
  
  val s = (0..9).zip( "abcdefghei".toList() ).map { 
    val (num, char) = it
    Pair(num.toString(), char.toString())
  }.toMap()
  val buffs = mutableListOf<String>("an")
  (1..n-1).map { 
    var numstr = "a%.8fa".format(Math.random()).replace("0.", "")
    s.map { (s,t) ->
      numstr = numstr.replace( s, t )
    }
    buffs.add(numstr)
  }
  buffs.reversed().joinToString("\n").run(::println)
}
0