結果
問題 | No.251 大きな桁の復習問題(1) |
ユーザー | mits58 |
提出日時 | 2016-07-25 19:34:11 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 651 bytes |
コンパイル時間 | 2,144 ms |
コンパイル使用メモリ | 74,540 KB |
実行使用メモリ | 57,196 KB |
最終ジャッジ日時 | 2024-11-06 16:23:58 |
合計ジャッジ時間 | 13,128 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
53,988 KB |
testcase_01 | WA | - |
testcase_02 | AC | 131 ms
54,096 KB |
testcase_03 | AC | 137 ms
54,056 KB |
testcase_04 | AC | 139 ms
53,932 KB |
testcase_05 | AC | 137 ms
53,768 KB |
testcase_06 | AC | 139 ms
53,976 KB |
testcase_07 | AC | 142 ms
54,000 KB |
testcase_08 | AC | 134 ms
53,984 KB |
testcase_09 | AC | 718 ms
56,992 KB |
testcase_10 | AC | 712 ms
57,196 KB |
testcase_11 | AC | 703 ms
57,028 KB |
testcase_12 | AC | 710 ms
56,864 KB |
testcase_13 | AC | 719 ms
57,192 KB |
testcase_14 | AC | 698 ms
56,964 KB |
testcase_15 | AC | 711 ms
56,980 KB |
testcase_16 | AC | 700 ms
57,040 KB |
testcase_17 | AC | 704 ms
57,076 KB |
testcase_18 | AC | 706 ms
57,164 KB |
testcase_19 | AC | 699 ms
56,920 KB |
testcase_20 | AC | 137 ms
54,040 KB |
testcase_21 | AC | 127 ms
53,068 KB |
testcase_22 | AC | 132 ms
54,036 KB |
testcase_23 | AC | 138 ms
53,640 KB |
ソースコード
import java.math.BigInteger; import java.util.Scanner; public class Main{ static BigInteger mod=BigInteger.valueOf(129402307); static long pow(long a,long x,long m){ if(a==0) return 0; else if(x==0) return 1; else if(x%2==0) return pow((a*a)%m,x/2,m)%m; else return (a*pow((a*a)%m,x/2,m))%m; } public static void main(String[] args){ Scanner sc=new Scanner(System.in); while(sc.hasNext()){ BigInteger n=sc.nextBigInteger(); BigInteger m=sc.nextBigInteger(); n=n.remainder(mod); m=m.remainder(mod.subtract(BigInteger.ONE)); long nn=n.longValue(),mm=m.longValue(); System.out.println(pow(nn,mm,mod.longValue())); } } }