結果
問題 | No.2862 NOT FOUND 404 |
ユーザー |
|
提出日時 | 2024-10-12 10:35:11 |
言語 | C++17(clang) (17.0.6 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 353 bytes |
コンパイル時間 | 6,475 ms |
コンパイル使用メモリ | 127,764 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-12 10:35:18 |
合計ジャッジ時間 | 2,008 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 |
ソースコード
#include <iostream> #include <cstdio> #include <vector> #include <algorithm> #include <string> #include <utility> #include <tuple> #include <set> #include <map> #include <cassert> using namespace std; int main() { int n; string s; cin >> n >> s; bool ok = s.find("404") != string::npos; cout << (ok ? "Found" : "NotFound") << endl; return 0; }