結果

問題 No.251 大きな桁の復習問題(1)
ユーザー yaoshimaxyaoshimax
提出日時 2016-05-08 00:54:42
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 2,351 ms / 5,000 ms
コード長 169 bytes
コンパイル時間 546 ms
コンパイル使用メモリ 76,964 KB
実行使用メモリ 86,440 KB
最終ジャッジ日時 2024-05-09 22:58:53
合計ジャッジ時間 28,160 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
75,428 KB
testcase_01 AC 75 ms
75,708 KB
testcase_02 AC 76 ms
75,660 KB
testcase_03 AC 75 ms
75,516 KB
testcase_04 AC 74 ms
75,784 KB
testcase_05 AC 74 ms
75,708 KB
testcase_06 AC 75 ms
75,296 KB
testcase_07 AC 75 ms
75,580 KB
testcase_08 AC 75 ms
75,676 KB
testcase_09 AC 2,351 ms
85,928 KB
testcase_10 AC 2,290 ms
85,804 KB
testcase_11 AC 2,308 ms
85,912 KB
testcase_12 AC 2,330 ms
86,060 KB
testcase_13 AC 2,342 ms
85,896 KB
testcase_14 AC 2,318 ms
86,164 KB
testcase_15 AC 2,324 ms
86,280 KB
testcase_16 AC 2,313 ms
86,132 KB
testcase_17 AC 2,327 ms
86,200 KB
testcase_18 AC 2,321 ms
86,188 KB
testcase_19 AC 2,271 ms
86,440 KB
testcase_20 AC 75 ms
75,532 KB
testcase_21 AC 75 ms
75,656 KB
testcase_22 AC 75 ms
75,556 KB
testcase_23 AC 77 ms
75,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(raw_input())
M=int(raw_input())
ans=1
mul=N
mod=129402307
while M>0:
    if M%2==1:
        ans*=mul
        ans%=mod
    mul*=mul
    mul%=mod
    M/=2
print ans
0