結果

問題 No.494 yukicoder
ユーザー face4face4
提出日時 2019-12-08 11:10:17
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 255 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 12,314 ms
コンパイル使用メモリ 407,048 KB
実行使用メモリ 51,932 KB
最終ジャッジ日時 2023-08-28 16:50:14
合計ジャッジ時間 15,525 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 252 ms
50,232 KB
testcase_01 AC 254 ms
50,212 KB
testcase_02 AC 254 ms
50,208 KB
testcase_03 AC 255 ms
50,252 KB
testcase_04 AC 254 ms
50,348 KB
testcase_05 AC 253 ms
50,136 KB
testcase_06 AC 250 ms
50,196 KB
testcase_07 AC 250 ms
51,932 KB
testcase_08 AC 249 ms
50,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    val x = readLine()!!
    for(i in 0..8){
        if(x[i] == '?'){
            println("yukicoder"[i])
        }
    }
}
0