結果

問題 No.2862 NOT FOUND 404
ユーザー ImTabooImTaboo
提出日時 2024-10-20 14:30:13
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 387 bytes
コンパイル時間 12,837 ms
コンパイル使用メモリ 428,440 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-10-20 14:30:33
合計ジャッジ時間 18,137 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 263 ms
54,400 KB
testcase_01 AC 264 ms
54,152 KB
testcase_02 AC 264 ms
54,152 KB
testcase_03 AC 264 ms
54,320 KB
testcase_04 AC 275 ms
54,152 KB
testcase_05 AC 270 ms
54,268 KB
testcase_06 AC 256 ms
54,232 KB
testcase_07 AC 258 ms
54,268 KB
testcase_08 AC 264 ms
54,176 KB
testcase_09 AC 262 ms
54,136 KB
testcase_10 AC 257 ms
54,156 KB
testcase_11 AC 276 ms
54,388 KB
testcase_12 AC 267 ms
54,272 KB
testcase_13 AC 263 ms
54,260 KB
testcase_14 AC 261 ms
54,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// https://yukicoder.me/problems/no/2862
fun main() {
    val n = readln().toInt()
    val s = readln().map { it - '0' }
    
    for (i in 0..<n - 2) {

        if (s[i] == 4) {
            if (s[i + 1] == 0) {
                if (s[i + 2] == 4) {
                    println("Found")
                    return

                }
            }
        }
    }
    println("NotFound")
}
0