結果

問題 No.701 ひとりしりとり
ユーザー 💕💖💞💕💖💞
提出日時 2018-06-16 03:26:17
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 597 bytes
コンパイル時間 13,023 ms
コンパイル使用メモリ 438,184 KB
実行使用メモリ 94,732 KB
最終ジャッジ日時 2024-11-20 16:25:21
合計ジャッジ時間 17,280 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 299 ms
60,376 KB
testcase_02 AC 313 ms
60,256 KB
testcase_03 AC 312 ms
60,356 KB
testcase_04 AC 308 ms
60,372 KB
testcase_05 AC 319 ms
60,280 KB
testcase_06 AC 310 ms
60,304 KB
testcase_07 AC 310 ms
60,220 KB
testcase_08 AC 321 ms
60,344 KB
testcase_09 AC 344 ms
60,456 KB
testcase_10 AC 454 ms
66,864 KB
testcase_11 AC 639 ms
94,732 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 runes = "abcdefghijklmnopqrstuvwxyz".toList().map(Char::toString)

  val buffs = mutableListOf<String>("an")
  
  var c = 0
  l1@for( c1 in (0..runes.size-1 ) ) {
    for( c2 in (0..runes.size-1 ) ) {
      for( c3 in (0..runes.size-1 ) ) {
        for( c4 in (0..runes.size-1 ) ) {
          var numstr = "a" + listOf(c1,c2,c3,c4).map{ runes[it] }.joinToString("") + "a" 
          buffs.add(numstr)
          c++
          if(c >= n-1) break@l1
        }
      }
    }
  }
  buffs.reversed().joinToString("\n").run(::println)
}
0