結果

問題 No.1343 Dividing Digit
ユーザー lloyzlloyz
提出日時 2022-11-14 00:09:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,616 KB
最終ジャッジ日時 2024-09-15 05:28:00
合計ジャッジ時間 3,556 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 41 ms
51,456 KB
testcase_02 AC 41 ms
51,456 KB
testcase_03 AC 107 ms
79,232 KB
testcase_04 AC 53 ms
60,928 KB
testcase_05 AC 63 ms
64,384 KB
testcase_06 AC 58 ms
62,336 KB
testcase_07 AC 70 ms
66,816 KB
testcase_08 AC 95 ms
75,136 KB
testcase_09 AC 101 ms
77,184 KB
testcase_10 AC 56 ms
61,824 KB
testcase_11 AC 69 ms
66,176 KB
testcase_12 AC 92 ms
73,216 KB
testcase_13 AC 88 ms
71,936 KB
testcase_14 AC 55 ms
61,440 KB
testcase_15 AC 67 ms
65,152 KB
testcase_16 AC 57 ms
61,824 KB
testcase_17 AC 102 ms
77,056 KB
testcase_18 AC 107 ms
78,848 KB
testcase_19 AC 87 ms
71,552 KB
testcase_20 AC 76 ms
68,480 KB
testcase_21 AC 98 ms
75,264 KB
testcase_22 AC 99 ms
76,672 KB
testcase_23 AC 110 ms
79,616 KB
testcase_24 AC 108 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mod = sum(A)
ans = 0
for i in range(n):
    ans += A[i] * pow(k, n - i - 1, mod) % mod
    ans %= mod
print(ans)
0