結果

問題 No.1343 Dividing Digit
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-16 13:13:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 81,408 KB
最終ジャッジ日時 2024-05-05 15:08:14
合計ジャッジ時間 2,779 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 36 ms
51,328 KB
testcase_03 AC 65 ms
80,896 KB
testcase_04 AC 48 ms
62,080 KB
testcase_05 AC 52 ms
65,536 KB
testcase_06 AC 46 ms
63,232 KB
testcase_07 AC 53 ms
67,712 KB
testcase_08 AC 63 ms
76,288 KB
testcase_09 AC 64 ms
78,592 KB
testcase_10 AC 47 ms
62,464 KB
testcase_11 AC 50 ms
66,944 KB
testcase_12 AC 58 ms
74,496 KB
testcase_13 AC 56 ms
73,088 KB
testcase_14 AC 45 ms
62,592 KB
testcase_15 AC 49 ms
66,304 KB
testcase_16 AC 46 ms
62,848 KB
testcase_17 AC 61 ms
78,720 KB
testcase_18 AC 65 ms
80,768 KB
testcase_19 AC 59 ms
72,960 KB
testcase_20 AC 55 ms
69,632 KB
testcase_21 AC 65 ms
76,544 KB
testcase_22 AC 64 ms
78,208 KB
testcase_23 AC 67 ms
81,408 KB
testcase_24 AC 62 ms
79,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
A.reverse()

mod = sum(A)
powk = [1] * N
for i in range(1, N):
    powk[i] = powk[i - 1] * K % mod

ans = 0
for a, k in zip(A, powk):
    ans += a * k
    ans %= mod
print(ans)
0