結果
問題 | No.167 N^M mod 10 |
ユーザー | t8m8⛄️ |
提出日時 | 2015-03-20 07:36:54 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 987 bytes |
コンパイル時間 | 3,779 ms |
コンパイル使用メモリ | 75,796 KB |
実行使用メモリ | 38,384 KB |
最終ジャッジ日時 | 2024-06-28 23:45:07 |
合計ジャッジ時間 | 5,470 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 50 ms
37,252 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | AC | 47 ms
36,988 KB |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | AC | 49 ms
37,088 KB |
testcase_12 | RE | - |
testcase_13 | AC | 48 ms
37,308 KB |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 51 ms
37,276 KB |
testcase_18 | WA | - |
testcase_19 | AC | 47 ms
37,240 KB |
testcase_20 | AC | 47 ms
37,120 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | RE | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
ソースコード
import java.util.*; import java.io.*; import java.math.BigInteger; import static java.util.Arrays.*; import static java.lang.Math.*; public class No167 { static final InputStream in = System.in; static final PrintWriter out = new PrintWriter(System.out,false); static void solve() throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String input = br.readLine(); int n = Integer.parseInt(input.substring(input.length()-1)); input = br.readLine(); int m = Integer.parseInt(input.substring(input.length()-2)); out.println((int)pow(n,m)%10); } public static void main(String[] args) throws Exception { long start = System.currentTimeMillis(); solve(); out.flush(); long end = System.currentTimeMillis(); //trace(end-start + "ms"); in.close(); } static void trace(Object... o) { System.out.println(deepToString(o));} }