結果

問題 No.138 化石のバージョン
ユーザー gemmarogemmaro
提出日時 2020-04-19 08:39:46
言語 Elixir
(1.16.2)
結果
AC  
実行時間 693 ms / 5,000 ms
コード長 375 bytes
コンパイル時間 948 ms
コンパイル使用メモリ 64,392 KB
実行使用メモリ 56,120 KB
最終ジャッジ日時 2024-06-09 23:38:29
合計ジャッジ時間 22,273 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 571 ms
55,028 KB
testcase_01 AC 562 ms
54,892 KB
testcase_02 AC 546 ms
54,704 KB
testcase_03 AC 528 ms
53,856 KB
testcase_04 AC 537 ms
54,064 KB
testcase_05 AC 548 ms
54,660 KB
testcase_06 AC 546 ms
54,708 KB
testcase_07 AC 535 ms
53,968 KB
testcase_08 AC 533 ms
54,088 KB
testcase_09 AC 534 ms
54,448 KB
testcase_10 AC 564 ms
54,128 KB
testcase_11 AC 534 ms
54,332 KB
testcase_12 AC 533 ms
56,120 KB
testcase_13 AC 533 ms
53,864 KB
testcase_14 AC 693 ms
54,112 KB
testcase_15 AC 531 ms
54,332 KB
testcase_16 AC 536 ms
55,236 KB
testcase_17 AC 533 ms
53,728 KB
testcase_18 AC 531 ms
54,264 KB
testcase_19 AC 534 ms
54,124 KB
testcase_20 AC 522 ms
54,060 KB
testcase_21 AC 533 ms
53,732 KB
testcase_22 AC 535 ms
55,120 KB
testcase_23 AC 534 ms
54,152 KB
testcase_24 AC 564 ms
54,276 KB
testcase_25 AC 530 ms
54,120 KB
testcase_26 AC 545 ms
54,116 KB
testcase_27 AC 535 ms
54,488 KB
testcase_28 AC 525 ms
54,124 KB
testcase_29 AC 536 ms
55,016 KB
testcase_30 AC 543 ms
54,472 KB
testcase_31 AC 535 ms
54,092 KB
testcase_32 AC 537 ms
54,116 KB
testcase_33 AC 534 ms
54,600 KB
testcase_34 AC 585 ms
54,128 KB
testcase_35 AC 562 ms
54,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    1..2
    |> Enum.map(fn _ ->
      IO.read(:line)
      |> String.trim()
      |> String.split(".")
      |> Enum.map(&String.to_integer/1)
    end)
    |> solve
    |> IO.puts()
  end

  def solve([[a, b, c], [x, y, z]]) do
    cond do
      a > x || (a == x && (b > y || (b == y && c >= z))) -> "YES"
      true -> "NO"
    end
  end
end
0