結果

問題 No.16 累乗の加算
ユーザー ssmkzkssmkzk
提出日時 2019-06-17 10:48:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 429 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,104 KB
最終ジャッジ日時 2024-05-05 09:10:26
合計ジャッジ時間 6,569 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

def transtwo(a):
    return format(int(a), 'b')

x, N = map(int, input().split())
l = list(map(transtwo, input().split()))
ans = 0
ans1 = 1
ans_l = [x]

for i in range(len(l[-1]) - 1):
    ans_l.append(ans_l[-1]**2)


for l_i in l:
    letter_l = list(l_i)
    letter_l.reverse()
    ans1 = 1
    for i, ll_i in enumerate(letter_l):
        if ll_i == "1":
            ans1 *= ans_l[i] 
    ans += ans1
    


print(ans%1000003)
0