結果

問題 No.494 yukicoder
ユーザー face4face4
提出日時 2019-12-08 11:10:17
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 12,551 ms
コンパイル使用メモリ 430,728 KB
実行使用メモリ 49,864 KB
最終ジャッジ日時 2024-12-29 22:10:18
合計ジャッジ時間 16,319 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 300 ms
49,864 KB
testcase_01 AC 298 ms
49,560 KB
testcase_02 AC 312 ms
49,748 KB
testcase_03 AC 308 ms
49,704 KB
testcase_04 AC 305 ms
49,692 KB
testcase_05 AC 302 ms
49,796 KB
testcase_06 AC 302 ms
49,664 KB
testcase_07 AC 305 ms
49,748 KB
testcase_08 AC 304 ms
49,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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