結果

問題 No.548 国士無双
ユーザー 14番14番
提出日時 2022-07-05 18:55:08
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 11,890 ms
コンパイル使用メモリ 441,068 KB
実行使用メモリ 52,160 KB
最終ジャッジ日時 2024-05-09 14:00:50
合計ジャッジ時間 20,121 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
52,124 KB
testcase_01 AC 287 ms
51,744 KB
testcase_02 AC 290 ms
52,004 KB
testcase_03 AC 284 ms
52,132 KB
testcase_04 AC 290 ms
51,964 KB
testcase_05 AC 291 ms
51,740 KB
testcase_06 AC 287 ms
51,756 KB
testcase_07 AC 287 ms
51,880 KB
testcase_08 AC 285 ms
52,008 KB
testcase_09 AC 296 ms
52,156 KB
testcase_10 AC 293 ms
51,820 KB
testcase_11 AC 282 ms
52,028 KB
testcase_12 AC 289 ms
51,852 KB
testcase_13 AC 280 ms
52,160 KB
testcase_14 AC 283 ms
52,008 KB
testcase_15 AC 294 ms
51,992 KB
testcase_16 AC 297 ms
51,880 KB
testcase_17 AC 294 ms
51,900 KB
testcase_18 AC 293 ms
51,816 KB
testcase_19 AC 300 ms
51,992 KB
testcase_20 AC 291 ms
51,228 KB
testcase_21 AC 293 ms
51,896 KB
testcase_22 AC 282 ms
51,140 KB
testcase_23 AC 293 ms
51,716 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    println(getAns())
}

fun getAns():String {
    val chars = "abcdefghijklm"

    val s = readLine()!!

    val ans = mutableListOf<Char>()
    for(i in chars) {
        val tmp  = s + i
        if(chars.any { it !in tmp }) {
            continue
        }
        if(tmp.length != chars.length +1) {
            continue
        }
        ans.add(i)
    }
    if(ans.isEmpty()) {
        return "Impossible"
    }
    return ans.joinToString("\n")
}
0