結果

問題 No.1343 Dividing Digit
ユーザー lloyzlloyz
提出日時 2022-11-14 00:09:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,388 KB
最終ジャッジ日時 2024-09-15 05:28:50
合計ジャッジ時間 5,790 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,368 KB
testcase_03 AC 307 ms
19,932 KB
testcase_04 AC 53 ms
11,392 KB
testcase_05 AC 103 ms
13,184 KB
testcase_06 AC 74 ms
12,032 KB
testcase_07 AC 134 ms
14,300 KB
testcase_08 AC 250 ms
17,968 KB
testcase_09 AC 277 ms
18,656 KB
testcase_10 AC 63 ms
11,776 KB
testcase_11 AC 124 ms
13,568 KB
testcase_12 AC 225 ms
17,112 KB
testcase_13 AC 211 ms
16,604 KB
testcase_14 AC 60 ms
11,648 KB
testcase_15 AC 112 ms
13,440 KB
testcase_16 AC 63 ms
11,904 KB
testcase_17 AC 270 ms
18,684 KB
testcase_18 AC 309 ms
19,844 KB
testcase_19 AC 214 ms
16,804 KB
testcase_20 AC 156 ms
14,672 KB
testcase_21 AC 263 ms
18,212 KB
testcase_22 AC 266 ms
18,252 KB
testcase_23 AC 318 ms
20,388 KB
testcase_24 AC 256 ms
12,480 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