結果
問題 | No.251 大きな桁の復習問題(1) |
ユーザー | mits58 |
提出日時 | 2016-07-25 19:50:33 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 673 ms / 5,000 ms |
コード長 | 910 bytes |
コンパイル時間 | 3,193 ms |
コンパイル使用メモリ | 77,456 KB |
実行使用メモリ | 44,692 KB |
最終ジャッジ日時 | 2024-05-09 23:04:08 |
合計ジャッジ時間 | 11,400 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 116 ms
41,180 KB |
testcase_01 | AC | 115 ms
41,120 KB |
testcase_02 | AC | 118 ms
41,228 KB |
testcase_03 | AC | 120 ms
41,072 KB |
testcase_04 | AC | 115 ms
41,264 KB |
testcase_05 | AC | 106 ms
39,992 KB |
testcase_06 | AC | 116 ms
41,216 KB |
testcase_07 | AC | 119 ms
40,992 KB |
testcase_08 | AC | 105 ms
39,968 KB |
testcase_09 | AC | 645 ms
44,580 KB |
testcase_10 | AC | 649 ms
44,692 KB |
testcase_11 | AC | 633 ms
44,408 KB |
testcase_12 | AC | 647 ms
44,316 KB |
testcase_13 | AC | 632 ms
44,640 KB |
testcase_14 | AC | 633 ms
44,460 KB |
testcase_15 | AC | 633 ms
44,516 KB |
testcase_16 | AC | 658 ms
44,376 KB |
testcase_17 | AC | 673 ms
44,560 KB |
testcase_18 | AC | 648 ms
44,508 KB |
testcase_19 | AC | 658 ms
44,464 KB |
testcase_20 | AC | 120 ms
41,128 KB |
testcase_21 | AC | 113 ms
41,128 KB |
testcase_22 | AC | 110 ms
40,012 KB |
testcase_23 | AC | 112 ms
40,136 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(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(); if(n.compareTo(BigInteger.ZERO)==0) System.out.println(0); else if(m.compareTo(BigInteger.ZERO)==0) System.out.println(1); else{ n=n.remainder(mod); m=m.remainder(mod.subtract(BigInteger.ONE)); long nn=n.longValue(),mm=m.longValue(); if(mm==0 && nn==0) System.out.println(0); else if(mm==0) System.out.println(1); else if(nn==0) System.out.println(0); else System.out.println(pow(nn,mm,mod.longValue())); } } } }