結果

問題 No.2862 NOT FOUND 404
ユーザー ImTabooImTaboo
提出日時 2024-09-16 16:35:00
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 11,278 ms
コンパイル使用メモリ 429,648 KB
実行使用メモリ 49,868 KB
最終ジャッジ日時 2024-09-16 16:35:20
合計ジャッジ時間 16,850 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 323 ms
49,492 KB
testcase_01 AC 292 ms
49,388 KB
testcase_02 AC 294 ms
49,476 KB
testcase_03 AC 299 ms
49,400 KB
testcase_04 AC 325 ms
49,448 KB
testcase_05 AC 299 ms
49,640 KB
testcase_06 AC 300 ms
49,704 KB
testcase_07 AC 297 ms
49,512 KB
testcase_08 AC 328 ms
49,604 KB
testcase_09 AC 296 ms
49,868 KB
testcase_10 AC 297 ms
49,688 KB
testcase_11 AC 297 ms
49,444 KB
testcase_12 AC 305 ms
49,536 KB
testcase_13 AC 297 ms
49,788 KB
testcase_14 AC 298 ms
49,560 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