結果

問題 No.494 yukicoder
ユーザー face4face4
提出日時 2019-12-08 11:10:17
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 11,718 ms
コンパイル使用メモリ 428,904 KB
実行使用メモリ 49,760 KB
最終ジャッジ日時 2024-06-09 12:01:46
合計ジャッジ時間 13,598 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 252 ms
49,592 KB
testcase_01 AC 244 ms
49,484 KB
testcase_02 AC 249 ms
49,760 KB
testcase_03 AC 250 ms
49,576 KB
testcase_04 AC 246 ms
49,688 KB
testcase_05 AC 248 ms
49,652 KB
testcase_06 AC 248 ms
49,548 KB
testcase_07 AC 257 ms
49,712 KB
testcase_08 AC 242 ms
49,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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