結果

問題 No.558 575検出するやつ
ユーザー gemmarogemmaro
提出日時 2020-04-10 07:14:43
言語 Elixir
(1.16.2)
結果
AC  
実行時間 599 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 1,037 ms
コンパイル使用メモリ 62,556 KB
実行使用メモリ 56,072 KB
最終ジャッジ日時 2024-06-09 23:15:09
合計ジャッジ時間 13,543 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 543 ms
54,844 KB
testcase_01 AC 527 ms
53,628 KB
testcase_02 AC 530 ms
54,112 KB
testcase_03 AC 532 ms
54,792 KB
testcase_04 AC 554 ms
54,916 KB
testcase_05 AC 555 ms
54,836 KB
testcase_06 AC 548 ms
54,648 KB
testcase_07 AC 535 ms
54,004 KB
testcase_08 AC 539 ms
53,976 KB
testcase_09 AC 587 ms
54,104 KB
testcase_10 AC 578 ms
53,884 KB
testcase_11 AC 582 ms
54,420 KB
testcase_12 AC 570 ms
56,072 KB
testcase_13 AC 590 ms
54,060 KB
testcase_14 AC 599 ms
54,100 KB
testcase_15 AC 571 ms
54,248 KB
testcase_16 AC 583 ms
54,696 KB
testcase_17 AC 566 ms
54,168 KB
testcase_18 AC 541 ms
53,872 KB
testcase_19 AC 587 ms
53,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> String.trim()
    |> (fn s ->
          cond do
            s |> String.contains?("575") -> "YES"
            true -> "NO"
          end
        end).()
    |> IO.puts()
  end
end
0