結果

問題 No.2863 Base 10 Subsets 1
ユーザー noriocnorioc
提出日時 2024-09-02 02:10:18
言語 Elixir
(1.16.2)
結果
AC  
実行時間 633 ms / 2,000 ms
コード長 566 bytes
コンパイル時間 972 ms
コンパイル使用メモリ 63,676 KB
実行使用メモリ 55,600 KB
最終ジャッジ日時 2024-09-02 02:10:35
合計ジャッジ時間 12,642 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 589 ms
54,132 KB
testcase_01 AC 619 ms
53,500 KB
testcase_02 AC 586 ms
54,212 KB
testcase_03 AC 628 ms
54,044 KB
testcase_04 AC 593 ms
54,132 KB
testcase_05 AC 580 ms
55,600 KB
testcase_06 AC 604 ms
54,128 KB
testcase_07 AC 591 ms
54,932 KB
testcase_08 AC 620 ms
53,992 KB
testcase_09 AC 590 ms
53,936 KB
testcase_10 AC 612 ms
54,316 KB
testcase_11 AC 605 ms
54,272 KB
testcase_12 AC 628 ms
55,048 KB
testcase_13 AC 582 ms
53,980 KB
testcase_14 AC 633 ms
54,400 KB
testcase_15 AC 589 ms
53,996 KB
testcase_16 AC 620 ms
54,468 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
    [s, t] = input() |> String.split

    s = String.to_charlist(s)
    t = String.to_charlist(t)
    yn(f(s, t))
  end

  def f(s, t) when length(s) < length(t), do: false
  def f(s, t) do
    ns = length(s)
    nt = length(t)
    Enum.zip(Enum.drop(s, ns-nt), t)
    |> Enum.all?(fn {a, b} -> a >= b end)
  end
end
0