結果

問題 No.1343 Dividing Digit
ユーザー MitarushiMitarushi
提出日時 2021-01-16 13:17:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 73,600 KB
最終ジャッジ日時 2024-05-05 15:14:55
合計ジャッジ時間 2,761 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 93 ms
72,832 KB
testcase_04 AC 47 ms
60,416 KB
testcase_05 AC 56 ms
62,720 KB
testcase_06 AC 50 ms
61,696 KB
testcase_07 AC 65 ms
64,640 KB
testcase_08 AC 80 ms
70,272 KB
testcase_09 AC 91 ms
71,552 KB
testcase_10 AC 53 ms
60,800 KB
testcase_11 AC 64 ms
63,616 KB
testcase_12 AC 82 ms
68,608 KB
testcase_13 AC 77 ms
67,712 KB
testcase_14 AC 52 ms
60,544 KB
testcase_15 AC 64 ms
63,872 KB
testcase_16 AC 49 ms
61,184 KB
testcase_17 AC 86 ms
71,040 KB
testcase_18 AC 92 ms
72,448 KB
testcase_19 AC 81 ms
67,968 KB
testcase_20 AC 69 ms
65,408 KB
testcase_21 AC 82 ms
70,272 KB
testcase_22 AC 83 ms
70,912 KB
testcase_23 AC 92 ms
73,600 KB
testcase_24 AC 90 ms
71,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = [int(i) for i in input().split()]
a.reverse()
mod = sum(a)
ans = 0
for i in range(n):
    ans += a[i] * pow(k, i, mod)
    ans %= mod
print(ans)
0