結果

問題 No.405 ローマ数字の腕時計
ユーザー gemmarogemmaro
提出日時 2020-04-15 10:17:19
言語 Elixir
(1.16.2)
結果
AC  
実行時間 601 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 4,480 ms
コンパイル使用メモリ 61,208 KB
実行使用メモリ 55,580 KB
最終ジャッジ日時 2024-07-06 19:28:56
合計ジャッジ時間 21,285 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 583 ms
53,748 KB
testcase_01 AC 582 ms
54,388 KB
testcase_02 AC 583 ms
54,332 KB
testcase_03 AC 587 ms
53,852 KB
testcase_04 AC 580 ms
54,284 KB
testcase_05 AC 576 ms
55,580 KB
testcase_06 AC 589 ms
53,740 KB
testcase_07 AC 575 ms
54,396 KB
testcase_08 AC 572 ms
54,268 KB
testcase_09 AC 584 ms
54,288 KB
testcase_10 AC 570 ms
53,744 KB
testcase_11 AC 601 ms
54,992 KB
testcase_12 AC 572 ms
55,036 KB
testcase_13 AC 563 ms
54,224 KB
testcase_14 AC 581 ms
53,984 KB
testcase_15 AC 584 ms
54,100 KB
testcase_16 AC 588 ms
54,716 KB
testcase_17 AC 580 ms
54,692 KB
testcase_18 AC 596 ms
53,880 KB
testcase_19 AC 576 ms
54,168 KB
testcase_20 AC 562 ms
53,876 KB
testcase_21 AC 576 ms
54,976 KB
testcase_22 AC 577 ms
53,864 KB
testcase_23 AC 578 ms
55,240 KB
testcase_24 AC 579 ms
54,732 KB
testcase_25 AC 564 ms
54,328 KB
testcase_26 AC 571 ms
54,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.read(:line)
    |> String.split()
    |> (fn [s, t] -> [s, t |> String.to_integer()] end).()
    |> solve
    |> IO.puts()
  end

  defp solve([s, t]) do
    r()
    |> Enum.at(
      (t +
         (r()
          |> Enum.find_index(&(&1 == s))))
      |> rem(12)
    )
  end

  defp r do
    ~w(I II III IIII V VI VII VIII IX X XI XII)
  end
end
0