結果

問題 No.1343 Dividing Digit
ユーザー brthyyjpbrthyyjp
提出日時 2021-01-22 01:17:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 81,408 KB
最終ジャッジ日時 2024-12-25 15:36:22
合計ジャッジ時間 3,734 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
58,368 KB
testcase_01 AC 54 ms
58,240 KB
testcase_02 AC 54 ms
58,496 KB
testcase_03 AC 83 ms
80,512 KB
testcase_04 AC 62 ms
62,464 KB
testcase_05 AC 64 ms
65,920 KB
testcase_06 AC 61 ms
63,872 KB
testcase_07 AC 67 ms
68,096 KB
testcase_08 AC 78 ms
76,160 KB
testcase_09 AC 80 ms
77,952 KB
testcase_10 AC 62 ms
62,976 KB
testcase_11 AC 67 ms
67,200 KB
testcase_12 AC 77 ms
74,496 KB
testcase_13 AC 80 ms
73,344 KB
testcase_14 AC 61 ms
62,464 KB
testcase_15 AC 71 ms
66,816 KB
testcase_16 AC 66 ms
63,104 KB
testcase_17 AC 83 ms
78,208 KB
testcase_18 AC 85 ms
80,128 KB
testcase_19 AC 77 ms
73,088 KB
testcase_20 AC 72 ms
70,016 KB
testcase_21 AC 79 ms
76,672 KB
testcase_22 AC 79 ms
78,080 KB
testcase_23 AC 85 ms
81,408 KB
testcase_24 AC 80 ms
78,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int, input().split())
A = list(map(int, input().split()))
A.reverse()

mod = sum(A)

table = [0]*(10**5+1)
table[0] = 1
for i in range(1, 10**5+1):
     table[i] = table[i-1]*k
     table[i] %= mod

ans = 0
for i, a in enumerate(A):
    ans += a*table[i]
    ans %= mod
print(ans)
0