結果

問題 No.167 N^M mod 10
ユーザー noriocnorioc
提出日時 2015-09-17 22:08:14
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 742 bytes
コンパイル時間 12,757 ms
コンパイル使用メモリ 258,168 KB
実行使用メモリ 66,008 KB
最終ジャッジ日時 2024-11-14 10:55:21
合計ジャッジ時間 41,682 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 908 ms
65,792 KB
testcase_01 AC 906 ms
65,744 KB
testcase_02 AC 955 ms
65,980 KB
testcase_03 AC 956 ms
65,888 KB
testcase_04 AC 983 ms
66,000 KB
testcase_05 AC 912 ms
65,568 KB
testcase_06 AC 995 ms
65,844 KB
testcase_07 AC 902 ms
65,700 KB
testcase_08 AC 901 ms
65,984 KB
testcase_09 AC 922 ms
65,800 KB
testcase_10 AC 930 ms
65,684 KB
testcase_11 AC 919 ms
65,660 KB
testcase_12 AC 920 ms
65,720 KB
testcase_13 AC 921 ms
65,800 KB
testcase_14 WA -
testcase_15 AC 915 ms
65,856 KB
testcase_16 AC 901 ms
65,664 KB
testcase_17 AC 915 ms
65,876 KB
testcase_18 AC 908 ms
65,792 KB
testcase_19 AC 924 ms
65,664 KB
testcase_20 AC 923 ms
65,920 KB
testcase_21 AC 907 ms
65,800 KB
testcase_22 AC 959 ms
65,684 KB
testcase_23 AC 962 ms
66,008 KB
testcase_24 AC 954 ms
65,880 KB
testcase_25 AC 961 ms
66,004 KB
testcase_26 WA -
testcase_27 AC 960 ms
65,936 KB
testcase_28 AC 980 ms
65,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.collection.mutable.ArrayBuffer

object Main {
  // 1 桁の数字 d を繰り返しかけていったときの
  // d の 1 の位のサイクルを求める
  def calcCycle(d: Int): Array[Int] = {
    assert(0 <= d && d < 10)
    val used = Array.ofDim[Boolean](10)
    val xs = new ArrayBuffer[Int]()
    var x = d
    while (!used(x)) {
      used(x) = true
      xs.append(x)
      x = (x * d) % 10
    }
    xs.toArray
  }

  def main(args: Array[String]) = {
    val sc = new java.util.Scanner(System.in)
    val N = sc.nextLine
    val M = sc.nextLine

    val d = N.last - '0'
    val cycle = calcCycle(d)
    val index = (BigInt(M) % cycle.size).toInt
    println(cycle(if (index == 0) cycle.size-1 else index-1))
  }
}
0