結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,624 KB
testcase_01 AC 43 ms
58,496 KB
testcase_02 AC 42 ms
58,240 KB
testcase_03 AC 64 ms
80,640 KB
testcase_04 AC 48 ms
62,720 KB
testcase_05 AC 51 ms
66,176 KB
testcase_06 AC 49 ms
64,000 KB
testcase_07 AC 55 ms
68,352 KB
testcase_08 AC 59 ms
76,544 KB
testcase_09 AC 61 ms
78,720 KB
testcase_10 AC 46 ms
63,616 KB
testcase_11 AC 52 ms
67,584 KB
testcase_12 AC 59 ms
75,136 KB
testcase_13 AC 57 ms
73,472 KB
testcase_14 AC 48 ms
62,976 KB
testcase_15 AC 51 ms
66,944 KB
testcase_16 AC 48 ms
63,616 KB
testcase_17 AC 62 ms
78,720 KB
testcase_18 AC 64 ms
80,640 KB
testcase_19 AC 57 ms
73,600 KB
testcase_20 AC 54 ms
70,272 KB
testcase_21 AC 62 ms
76,928 KB
testcase_22 AC 63 ms
77,952 KB
testcase_23 AC 63 ms
81,280 KB
testcase_24 AC 63 ms
79,744 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