結果
問題 | No.167 N^M mod 10 |
ユーザー | rf141 |
提出日時 | 2015-07-27 00:58:08 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 336 bytes |
コンパイル時間 | 4,286 ms |
コンパイル使用メモリ | 74,640 KB |
実行使用メモリ | 94,316 KB |
最終ジャッジ日時 | 2024-07-16 00:23:01 |
合計ジャッジ時間 | 11,132 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 456 ms
64,584 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 480 ms
57,480 KB |
testcase_06 | AC | 145 ms
53,980 KB |
testcase_07 | AC | 144 ms
54,072 KB |
testcase_08 | AC | 137 ms
54,028 KB |
testcase_09 | AC | 137 ms
54,120 KB |
testcase_10 | AC | 136 ms
54,016 KB |
testcase_11 | AC | 136 ms
54,172 KB |
testcase_12 | AC | 140 ms
53,904 KB |
testcase_13 | AC | 137 ms
54,104 KB |
testcase_14 | AC | 138 ms
53,588 KB |
testcase_15 | AC | 137 ms
53,940 KB |
testcase_16 | AC | 146 ms
53,828 KB |
testcase_17 | AC | 219 ms
57,080 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
import java.util.*; import java.math.*; public class nmMod{ public static void main(String... args){ Scanner scan = new Scanner(System.in); String n = scan.next();int m = scan.nextInt(); BigInteger N = new BigInteger(n); BigInteger base = N.pow(m); BigInteger t = new BigInteger("10"); System.out.println(base.mod(t)); } }