結果

問題 No.2862 NOT FOUND 404
ユーザー 👑 obakyanobakyan
提出日時 2024-09-01 10:20:47
言語 Lua
(LuaJit 2.1.1734355927)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 112 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-01 10:20:48
合計ジャッジ時間 1,188 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

n = io.read("*n", "*l")
s = io.read()
t = s:find("404")
if t then
  print("Found")
else
  print("NotFound")
end
0