結果

問題 No.2862 NOT FOUND 404
ユーザー ImTabooImTaboo
提出日時 2024-09-16 16:28:55
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 327 bytes
コンパイル時間 10,176 ms
コンパイル使用メモリ 430,328 KB
実行使用メモリ 49,708 KB
最終ジャッジ日時 2024-09-16 16:29:12
合計ジャッジ時間 15,217 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 251 ms
49,352 KB
testcase_01 AC 256 ms
49,368 KB
testcase_02 AC 258 ms
49,384 KB
testcase_03 AC 263 ms
49,496 KB
testcase_04 AC 290 ms
49,584 KB
testcase_05 AC 252 ms
49,564 KB
testcase_06 AC 256 ms
49,380 KB
testcase_07 AC 252 ms
49,440 KB
testcase_08 WA -
testcase_09 AC 256 ms
49,440 KB
testcase_10 AC 259 ms
49,384 KB
testcase_11 AC 253 ms
49,544 KB
testcase_12 AC 256 ms
49,708 KB
testcase_13 WA -
testcase_14 AC 251 ms
49,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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


                }
            }
        }

    }
    println( "NotFound")


}
0