結果

問題 No.251 大きな桁の復習問題(1)
ユーザー nebukuro09nebukuro09
提出日時 2016-10-17 01:03:40
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 2,328 ms / 5,000 ms
コード長 332 bytes
コンパイル時間 845 ms
コンパイル使用メモリ 76,700 KB
実行使用メモリ 86,188 KB
最終ジャッジ日時 2024-12-17 17:41:31
合計ジャッジ時間 27,262 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
75,424 KB
testcase_01 AC 75 ms
75,800 KB
testcase_02 AC 76 ms
75,376 KB
testcase_03 AC 74 ms
75,676 KB
testcase_04 AC 73 ms
75,800 KB
testcase_05 AC 73 ms
75,660 KB
testcase_06 AC 75 ms
75,448 KB
testcase_07 AC 73 ms
75,808 KB
testcase_08 AC 74 ms
75,644 KB
testcase_09 AC 2,187 ms
85,908 KB
testcase_10 AC 2,279 ms
86,152 KB
testcase_11 AC 2,307 ms
86,188 KB
testcase_12 AC 2,328 ms
86,132 KB
testcase_13 AC 2,305 ms
85,756 KB
testcase_14 AC 2,252 ms
85,772 KB
testcase_15 AC 2,307 ms
85,788 KB
testcase_16 AC 2,280 ms
86,156 KB
testcase_17 AC 2,244 ms
85,672 KB
testcase_18 AC 2,296 ms
85,676 KB
testcase_19 AC 2,327 ms
85,628 KB
testcase_20 AC 76 ms
75,896 KB
testcase_21 AC 75 ms
75,776 KB
testcase_22 AC 76 ms
75,664 KB
testcase_23 AC 74 ms
75,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def powermod(n, x, mod):
    if n % mod == 0:
        return 0 if x > 0 else 1
    elif n == 0:
        return 0

    n %= mod
    ans = 1
    while x >= 1:
        if x%2:
            ans = ans * n % mod
        n = n * n % mod
        x /= 2
    return ans

MOD = 129402307
print powermod(int(raw_input()), int(raw_input()), MOD)
0