結果
| 問題 | No.2862 NOT FOUND 404 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-09-02 21:16:12 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 40 ms / 2,000 ms |
| コード長 | 153 bytes |
| 記録 | |
| コンパイル時間 | 295 ms |
| コンパイル使用メモリ | 85,504 KB |
| 実行使用メモリ | 51,968 KB |
| 最終ジャッジ日時 | 2026-04-04 00:08:00 |
| 合計ジャッジ時間 | 1,545 ms |
|
ジャッジサーバーID (参考情報) |
judge5_0 / judge4_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 |
ソースコード
n=int(input())
s=input()
for i in range(n-2):
if s[i]=="4" and s[i+1]=="0" and s[i+2]=="4":
print("Found")
exit()
print("NotFound")