結果

問題 No.167 N^M mod 10
ユーザー gemmarogemmaro
提出日時 2020-05-17 11:03:40
言語 Elixir
(1.16.2)
結果
WA  
実行時間 -
コード長 1,002 bytes
コンパイル時間 952 ms
コンパイル使用メモリ 63,084 KB
実行使用メモリ 57,580 KB
最終ジャッジ日時 2024-06-10 00:02:03
合計ジャッジ時間 18,116 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 535 ms
53,940 KB
testcase_01 AC 520 ms
53,812 KB
testcase_02 AC 536 ms
55,056 KB
testcase_03 AC 565 ms
55,080 KB
testcase_04 AC 582 ms
54,968 KB
testcase_05 AC 527 ms
54,280 KB
testcase_06 AC 531 ms
54,284 KB
testcase_07 AC 535 ms
54,196 KB
testcase_08 AC 533 ms
53,744 KB
testcase_09 AC 536 ms
53,800 KB
testcase_10 AC 533 ms
54,200 KB
testcase_11 AC 529 ms
53,864 KB
testcase_12 AC 524 ms
53,656 KB
testcase_13 AC 526 ms
53,808 KB
testcase_14 WA -
testcase_15 AC 522 ms
53,616 KB
testcase_16 AC 523 ms
54,228 KB
testcase_17 AC 528 ms
53,868 KB
testcase_18 AC 530 ms
53,804 KB
testcase_19 AC 523 ms
53,804 KB
testcase_20 AC 531 ms
53,932 KB
testcase_21 AC 528 ms
53,808 KB
testcase_22 AC 587 ms
54,900 KB
testcase_23 AC 573 ms
55,084 KB
testcase_24 AC 560 ms
55,144 KB
testcase_25 AC 572 ms
54,696 KB
testcase_26 WA -
testcase_27 AC 567 ms
54,844 KB
testcase_28 AC 561 ms
55,032 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
    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
0