結果

問題 No.1217 せしすせそ
ユーザー face4face4
提出日時 2021-04-11 13:15:00
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 11,148 ms
コンパイル使用メモリ 413,760 KB
実行使用メモリ 50,772 KB
最終ジャッジ日時 2023-09-09 15:42:06
合計ジャッジ時間 16,314 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 267 ms
50,236 KB
testcase_01 AC 267 ms
50,304 KB
testcase_02 AC 268 ms
50,212 KB
testcase_03 AC 265 ms
50,624 KB
testcase_04 AC 267 ms
50,324 KB
testcase_05 AC 267 ms
50,772 KB
testcase_06 AC 270 ms
50,724 KB
testcase_07 AC 269 ms
50,208 KB
testcase_08 AC 273 ms
50,412 KB
testcase_09 AC 272 ms
50,364 KB
testcase_10 AC 268 ms
50,216 KB
testcase_11 AC 268 ms
50,408 KB
testcase_12 AC 269 ms
50,272 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