結果
問題 | No.167 N^M mod 10 |
ユーザー | takeya_okino |
提出日時 | 2019-08-22 19:36:32 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 586 bytes |
コンパイル時間 | 2,065 ms |
コンパイル使用メモリ | 76,520 KB |
実行使用メモリ | 54,316 KB |
最終ジャッジ日時 | 2024-10-12 19:56:43 |
合計ジャッジ時間 | 6,785 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 122 ms
53,688 KB |
testcase_07 | AC | 120 ms
53,936 KB |
testcase_08 | AC | 120 ms
53,916 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 119 ms
53,644 KB |
testcase_13 | WA | - |
testcase_14 | AC | 116 ms
54,004 KB |
testcase_15 | WA | - |
testcase_16 | AC | 124 ms
53,736 KB |
testcase_17 | AC | 119 ms
53,824 KB |
testcase_18 | AC | 123 ms
54,144 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 | 147 ms
53,920 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; } if(d == 0) ans = 0; System.out.println(ans); } }