結果

問題 No.2862 NOT FOUND 404
ユーザー ImTabooImTaboo
提出日時 2024-09-16 16:22:18
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 325 bytes
コンパイル時間 12,343 ms
コンパイル使用メモリ 429,192 KB
実行使用メモリ 54,556 KB
最終ジャッジ日時 2024-09-16 16:22:37
合計ジャッジ時間 17,427 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 277 ms
49,612 KB
testcase_01 WA -
testcase_02 AC 274 ms
49,592 KB
testcase_03 AC 290 ms
49,552 KB
testcase_04 RE -
testcase_05 AC 279 ms
49,480 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 277 ms
49,520 KB
testcase_09 WA -
testcase_10 AC 274 ms
49,656 KB
testcase_11 WA -
testcase_12 AC 276 ms
49,768 KB
testcase_13 AC 277 ms
49,620 KB
testcase_14 AC 276 ms
49,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val n = readln().toInt()
    val s = readln()

    for(i in 0..<n) {
        if(s[i] == '4') {
            if(s[i+1] == '0') {
                if(s[i+2] == '4') {
                    println( "Found" )
                    return


                }
            }
        }

    }
    println( "Notfound")


}
0