結果

問題 No.167 N^M mod 10
ユーザー くわいくわい
提出日時 2015-11-21 16:05:00
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 999 ms / 1,000 ms
コード長 438 bytes
コンパイル時間 12,356 ms
コンパイル使用メモリ 253,880 KB
実行使用メモリ 64,340 KB
最終ジャッジ日時 2024-10-01 22:15:25
合計ジャッジ時間 38,799 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 928 ms
64,176 KB
testcase_01 AC 935 ms
64,224 KB
testcase_02 AC 956 ms
64,164 KB
testcase_03 AC 951 ms
64,340 KB
testcase_04 AC 999 ms
64,340 KB
testcase_05 AC 950 ms
64,264 KB
testcase_06 AC 944 ms
64,260 KB
testcase_07 AC 947 ms
64,232 KB
testcase_08 AC 952 ms
64,100 KB
testcase_09 AC 918 ms
64,032 KB
testcase_10 AC 928 ms
63,956 KB
testcase_11 AC 921 ms
64,108 KB
testcase_12 AC 961 ms
64,244 KB
testcase_13 AC 924 ms
64,200 KB
testcase_14 AC 919 ms
64,312 KB
testcase_15 AC 916 ms
64,220 KB
testcase_16 AC 942 ms
63,988 KB
testcase_17 AC 934 ms
63,972 KB
testcase_18 AC 934 ms
64,072 KB
testcase_19 AC 933 ms
64,056 KB
testcase_20 AC 938 ms
64,232 KB
testcase_21 AC 924 ms
64,116 KB
testcase_22 AC 933 ms
64,208 KB
testcase_23 AC 932 ms
64,228 KB
testcase_24 AC 929 ms
64,108 KB
testcase_25 AC 927 ms
63,812 KB
testcase_26 AC 940 ms
64,220 KB
testcase_27 AC 932 ms
64,036 KB
testcase_28 AC 924 ms
64,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn

object Problem167 {

  def proc(N: String, M: String): Int = {
    if (M.length == 1 && M.toInt == 0) return 1

    val a = N.last.asDigit
    val b = M.takeRight(2).toInt % 4 match {
      case 0 => 4
      case x => x
    }
    Math.pow(a, b).toInt % 10
  }

  def main(args: Array[String]) = {
    val N = StdIn.readLine()
    val M = StdIn.readLine()

    val result: Int = proc(N, M)
    println(result)
  }
}
0