結果

問題 No.1217 せしすせそ
ユーザー face4face4
提出日時 2021-04-11 13:15:00
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 10,997 ms
コンパイル使用メモリ 429,952 KB
実行使用メモリ 49,884 KB
最終ジャッジ日時 2024-06-27 08:30:18
合計ジャッジ時間 14,565 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 272 ms
49,752 KB
testcase_01 AC 271 ms
49,644 KB
testcase_02 AC 276 ms
49,676 KB
testcase_03 AC 273 ms
49,804 KB
testcase_04 AC 273 ms
49,688 KB
testcase_05 AC 274 ms
49,884 KB
testcase_06 AC 276 ms
49,796 KB
testcase_07 AC 275 ms
49,812 KB
testcase_08 AC 273 ms
49,640 KB
testcase_09 AC 290 ms
49,688 KB
testcase_10 AC 273 ms
49,744 KB
testcase_11 AC 271 ms
49,664 KB
testcase_12 AC 278 ms
49,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val s = readLine()!!
    for(i in 0 until 26){
        if('a'+i != s[i]){
            println("${'a'+i}to${s[i]}")
        }
    }
}
0