結果

問題 No.1343 Dividing Digit
ユーザー Ultimate_Tea_04Ultimate_Tea_04
提出日時 2021-01-17 21:46:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,600 KB
最終ジャッジ日時 2024-11-30 03:16:06
合計ジャッジ時間 3,203 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 134 ms
20,080 KB
testcase_04 AC 40 ms
11,520 KB
testcase_05 AC 60 ms
13,440 KB
testcase_06 AC 48 ms
12,160 KB
testcase_07 AC 71 ms
14,328 KB
testcase_08 AC 113 ms
17,984 KB
testcase_09 AC 126 ms
18,936 KB
testcase_10 AC 44 ms
11,904 KB
testcase_11 AC 68 ms
13,568 KB
testcase_12 AC 105 ms
17,168 KB
testcase_13 AC 99 ms
16,880 KB
testcase_14 AC 43 ms
11,648 KB
testcase_15 AC 63 ms
13,440 KB
testcase_16 AC 45 ms
11,776 KB
testcase_17 AC 121 ms
18,836 KB
testcase_18 AC 130 ms
19,868 KB
testcase_19 AC 99 ms
16,640 KB
testcase_20 AC 81 ms
14,896 KB
testcase_21 AC 118 ms
18,220 KB
testcase_22 AC 119 ms
18,404 KB
testcase_23 AC 139 ms
20,600 KB
testcase_24 AC 118 ms
12,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def powf(x,n):
    if n == 0:
        return 1
    k = 1
    while n>1:
        if n%2 != 0:
            k *= x
        x *= x
        n //= 2
    return k*x

n,k = map(int,input().split())
a = list(map(int,input().split()))
s = sum(a)
ans = 0
cnt = 1
for i in range(n):
    ans += a[n-1-i]*cnt
    ans %= s
    cnt *= k
    cnt %= s
print(ans)
0