結果

問題 No.167 N^M mod 10
ユーザー gemmarogemmaro
提出日時 2020-05-17 11:07:26
言語 Elixir
(1.16.2)
結果
AC  
実行時間 648 ms / 1,000 ms
コード長 1,256 bytes
コンパイル時間 1,014 ms
コンパイル使用メモリ 63,104 KB
実行使用メモリ 56,412 KB
最終ジャッジ日時 2024-06-10 00:03:09
合計ジャッジ時間 20,563 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 586 ms
53,924 KB
testcase_01 AC 599 ms
53,940 KB
testcase_02 AC 639 ms
56,412 KB
testcase_03 AC 629 ms
55,356 KB
testcase_04 AC 631 ms
54,968 KB
testcase_05 AC 581 ms
54,120 KB
testcase_06 AC 585 ms
54,220 KB
testcase_07 AC 608 ms
54,972 KB
testcase_08 AC 592 ms
53,888 KB
testcase_09 AC 582 ms
54,536 KB
testcase_10 AC 598 ms
54,960 KB
testcase_11 AC 608 ms
54,960 KB
testcase_12 AC 591 ms
53,748 KB
testcase_13 AC 590 ms
53,744 KB
testcase_14 AC 615 ms
53,832 KB
testcase_15 AC 585 ms
53,872 KB
testcase_16 AC 580 ms
53,940 KB
testcase_17 AC 614 ms
53,764 KB
testcase_18 AC 590 ms
54,008 KB
testcase_19 AC 594 ms
55,132 KB
testcase_20 AC 589 ms
54,248 KB
testcase_21 AC 587 ms
54,000 KB
testcase_22 AC 648 ms
55,660 KB
testcase_23 AC 647 ms
55,136 KB
testcase_24 AC 634 ms
54,892 KB
testcase_25 AC 636 ms
54,760 KB
testcase_26 AC 607 ms
53,944 KB
testcase_27 AC 636 ms
55,212 KB
testcase_28 AC 647 ms
55,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    n = IO.read(:line) |> String.trim() |> String.last() |> String.to_integer()
    m = IO.read(:line) |> String.trim() |> String.to_integer()
    solve(n, m) |> IO.puts()
  end

  def solve(n, m) do
    cond do
      m == 0 ->
        1

      :else ->
        case n do
          0 ->
            0

          1 ->
            1

          2 ->
            case m |> rem(4) do
              1 -> 2
              2 -> 4
              3 -> 8
              0 -> 6
            end

          3 ->
            case m |> rem(4) do
              1 -> 3
              2 -> 9
              3 -> 7
              0 -> 1
            end

          4 ->
            case m |> rem(2) do
              1 -> 4
              0 -> 6
            end

          5 ->
            5

          6 ->
            6

          7 ->
            case m |> rem(4) do
              1 -> 7
              2 -> 9
              3 -> 3
              0 -> 1
            end

          8 ->
            case m |> rem(4) do
              1 -> 8
              2 -> 4
              3 -> 2
              0 -> 6
            end

          9 ->
            case m |> rem(2) do
              1 -> 9
              0 -> 1
            end
        end
    end
  end
end
0