結果
問題 | No.167 N^M mod 10 |
ユーザー | takeya_okino |
提出日時 | 2019-08-22 19:34:50 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 562 bytes |
コンパイル時間 | 2,088 ms |
コンパイル使用メモリ | 76,408 KB |
実行使用メモリ | 56,092 KB |
最終ジャッジ日時 | 2024-10-12 19:53:08 |
合計ジャッジ時間 | 6,882 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 121 ms
41,096 KB |
testcase_07 | AC | 120 ms
41,260 KB |
testcase_08 | AC | 123 ms
41,004 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 121 ms
41,292 KB |
testcase_13 | WA | - |
testcase_14 | AC | 108 ms
41,340 KB |
testcase_15 | WA | - |
testcase_16 | AC | 123 ms
41,168 KB |
testcase_17 | AC | 127 ms
41,324 KB |
testcase_18 | AC | 128 ms
41,296 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 128 ms
40,236 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String n = sc.next(); String m = sc.next(); int d = Integer.parseInt(String.valueOf(n.charAt(0))); int e = 0; if(m.length() > 1) { e = Integer.parseInt(String.valueOf(m.charAt(1)) + String.valueOf(m.charAt(0))); } else { e = Integer.parseInt(String.valueOf(m.charAt(0))); } e = (e % 4); int ans = 1; for(int i = 0; i < e; i++) { ans *= d; } System.out.println(ans); } }