結果
問題 | No.167 N^M mod 10 |
ユーザー | t8m8⛄️ |
提出日時 | 2015-03-20 07:31:19 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 881 bytes |
コンパイル時間 | 2,885 ms |
コンパイル使用メモリ | 75,220 KB |
実行使用メモリ | 52,608 KB |
最終ジャッジ日時 | 2024-06-28 23:45:18 |
合計ジャッジ時間 | 5,139 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 48 ms
37,100 KB |
testcase_06 | WA | - |
testcase_07 | AC | 47 ms
37,168 KB |
testcase_08 | AC | 49 ms
36,948 KB |
testcase_09 | AC | 49 ms
36,884 KB |
testcase_10 | WA | - |
testcase_11 | AC | 48 ms
37,016 KB |
testcase_12 | AC | 46 ms
36,908 KB |
testcase_13 | WA | - |
testcase_14 | AC | 49 ms
37,084 KB |
testcase_15 | AC | 49 ms
36,672 KB |
testcase_16 | AC | 47 ms
36,872 KB |
testcase_17 | AC | 45 ms
36,864 KB |
testcase_18 | AC | 46 ms
37,136 KB |
testcase_19 | AC | 46 ms
36,864 KB |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
ソースコード
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)); long n = Long.parseLong(br.readLine())%10; long m = Long.parseLong(br.readLine())%4; 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));} }