結果

問題 No.16 累乗の加算
ユーザー mitsushinomitsushino
提出日時 2018-01-11 10:23:09
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 572 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 34,460 KB
最終ジャッジ日時 2024-12-23 17:17:17
合計ジャッジ時間 67,071 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
33,256 KB
testcase_01 AC 33 ms
16,000 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 32 ms
31,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def binary_exponent(x, exponent):
    sum_values = 1
    quotient = exponent
    square_num = x
    while quotient > 0:
        quotient, mod = divmod(quotient, 2)
        if mod == 1:
            sum_values *= square_num
        square_num = pow(square_num, 2)
    return sum_values


if __name__ == '__main__':
    xN = list(map(int, input().split()))
    x = xN[0]
    N = xN[1]
    exponent_list = list(map(int, input().split()))
    sum_values = 0
    for exponent in exponent_list:
        sum_values += binary_exponent(x, exponent)
    print(sum_values % 1000003)
0