結果

問題 No.1343 Dividing Digit
ユーザー Meso MesoMeso Meso
提出日時 2024-07-01 09:25:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 20,408 KB
最終ジャッジ日時 2024-07-01 09:25:13
合計ジャッジ時間 5,475 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 280 ms
19,936 KB
testcase_04 AC 50 ms
11,648 KB
testcase_05 AC 93 ms
13,440 KB
testcase_06 AC 68 ms
12,288 KB
testcase_07 AC 121 ms
14,436 KB
testcase_08 AC 230 ms
18,100 KB
testcase_09 AC 257 ms
18,920 KB
testcase_10 AC 60 ms
11,904 KB
testcase_11 AC 113 ms
13,824 KB
testcase_12 AC 206 ms
17,152 KB
testcase_13 AC 191 ms
16,864 KB
testcase_14 AC 57 ms
11,904 KB
testcase_15 AC 105 ms
13,696 KB
testcase_16 AC 59 ms
12,032 KB
testcase_17 AC 273 ms
19,068 KB
testcase_18 AC 276 ms
19,980 KB
testcase_19 AC 194 ms
17,060 KB
testcase_20 AC 145 ms
14,848 KB
testcase_21 AC 244 ms
18,340 KB
testcase_22 AC 246 ms
18,516 KB
testcase_23 AC 294 ms
20,408 KB
testcase_24 AC 231 ms
12,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))
A = A[::-1]

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

print(ans % mod)
0