結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
75,436 KB
testcase_01 AC 72 ms
75,456 KB
testcase_02 AC 72 ms
75,308 KB
testcase_03 AC 74 ms
75,280 KB
testcase_04 AC 74 ms
75,404 KB
testcase_05 AC 72 ms
75,292 KB
testcase_06 AC 70 ms
75,428 KB
testcase_07 AC 69 ms
75,816 KB
testcase_08 AC 70 ms
75,396 KB
testcase_09 AC 1,931 ms
86,196 KB
testcase_10 AC 1,893 ms
86,176 KB
testcase_11 AC 1,957 ms
85,920 KB
testcase_12 AC 1,963 ms
85,944 KB
testcase_13 AC 1,947 ms
86,328 KB
testcase_14 AC 1,955 ms
86,332 KB
testcase_15 AC 1,955 ms
86,036 KB
testcase_16 AC 1,992 ms
85,948 KB
testcase_17 AC 1,959 ms
85,932 KB
testcase_18 AC 1,992 ms
86,300 KB
testcase_19 AC 1,914 ms
86,536 KB
testcase_20 AC 73 ms
75,680 KB
testcase_21 AC 70 ms
75,648 KB
testcase_22 AC 72 ms
75,376 KB
testcase_23 AC 72 ms
75,460 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