結果

問題 No.16 累乗の加算
ユーザー b1ueb1ue
提出日時 2018-04-13 22:47:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 33 ms / 5,000 ms
コード長 483 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-26 21:49:42
合計ジャッジ時間 1,162 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 33 ms
10,880 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 31 ms
10,880 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 31 ms
10,880 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:10: SyntaxWarning: "is" with 'int' literal. Did you mean "=="?
  if y is 0:

ソースコード

diff #

def exps_input(exps):
    return [int(e) for e in exps.split(' ')]


mod = 1_000_003


def pow_2(x, y):
    K = 1
    if y is 0:
        return 1
    while y > 1:
        if y % 2 == 0:
            x = x ** 2 % mod
            y = y // 2
        else:
            K = K * x % mod
            x = x ** 2 % mod
            y = (y - 1) // 2
    return K * x % mod


sum = 0
base = int(input().split(' ')[0])
for exp in exps_input(input()):
    sum += pow_2(base, exp)

print(sum % mod)
0