結果

問題 No.2862 NOT FOUND 404
ユーザー noriocnorioc
提出日時 2024-09-02 02:02:51
言語 Elixir
(1.16.2)
結果
AC  
実行時間 617 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 1,825 ms
コンパイル使用メモリ 65,232 KB
実行使用メモリ 55,072 KB
最終ジャッジ日時 2024-09-02 02:03:07
合計ジャッジ時間 12,650 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 607 ms
55,072 KB
testcase_01 AC 608 ms
54,780 KB
testcase_02 AC 602 ms
54,124 KB
testcase_03 AC 617 ms
54,992 KB
testcase_04 AC 602 ms
53,980 KB
testcase_05 AC 609 ms
53,936 KB
testcase_06 AC 615 ms
54,476 KB
testcase_07 AC 600 ms
54,396 KB
testcase_08 AC 605 ms
54,120 KB
testcase_09 AC 606 ms
54,088 KB
testcase_10 AC 603 ms
54,000 KB
testcase_11 AC 605 ms
54,876 KB
testcase_12 AC 614 ms
54,344 KB
testcase_13 AC 607 ms
53,800 KB
testcase_14 AC 615 ms
54,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  def main do
    _ = ii()
    s = input()
    if String.contains?(s, "404") do
      IO.puts "Found"
    else
      IO.puts "NotFound"
    end
  end
end
0