結果
| 問題 | No.2862 NOT FOUND 404 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2025-02-14 11:56:16 | 
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 276 bytes | 
| コンパイル時間 | 915 ms | 
| コンパイル使用メモリ | 78,944 KB | 
| 実行使用メモリ | 6,820 KB | 
| 最終ジャッジ日時 | 2025-02-14 11:56:18 | 
| 合計ジャッジ時間 | 2,099 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 12 | 
ソースコード
#include <iostream>
#include <cstdint>
using namespace std;
int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	uint32_t N;
	string S;
	cin >> N;
	S.reserve(N), cin >> S;
	if (S.find("404") == S.npos) cout << "NotFound\n";
	else cout << "Found\n";
	return 0;
}
            
            
            
        