結果

問題 No.1735 C#
ユーザー バカらっくバカらっく
提出日時 2022-02-03 13:18:19
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 11,724 ms
コンパイル使用メモリ 436,392 KB
実行使用メモリ 54,192 KB
最終ジャッジ日時 2024-06-11 09:53:01
合計ジャッジ時間 12,970 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
54,084 KB
testcase_01 AC 269 ms
54,096 KB
testcase_02 AC 273 ms
53,900 KB
testcase_03 AC 277 ms
54,168 KB
testcase_04 AC 267 ms
53,984 KB
testcase_05 AC 270 ms
53,876 KB
testcase_06 AC 267 ms
54,124 KB
testcase_07 AC 271 ms
54,192 KB
testcase_08 AC 268 ms
54,040 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val tmp = "ABCDEFG".map { it.toString() } + "ACDFG".map { it.toString() + "#" }
    val oto = tmp.sorted().let { it+it+it }
    val s = readLine()!!
    println(oto.indexOf(s).let { oto[it+1] })
}
0