結果

問題 No.1343 Dividing Digit
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-01-16 13:04:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 79,232 KB
最終ジャッジ日時 2024-05-05 14:51:39
合計ジャッジ時間 2,924 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 103 ms
78,720 KB
testcase_04 AC 47 ms
60,800 KB
testcase_05 AC 60 ms
64,384 KB
testcase_06 AC 52 ms
62,336 KB
testcase_07 AC 64 ms
66,688 KB
testcase_08 AC 86 ms
74,752 KB
testcase_09 AC 92 ms
76,672 KB
testcase_10 AC 48 ms
61,696 KB
testcase_11 AC 60 ms
65,792 KB
testcase_12 AC 81 ms
73,088 KB
testcase_13 AC 82 ms
71,936 KB
testcase_14 AC 52 ms
61,440 KB
testcase_15 AC 63 ms
65,152 KB
testcase_16 AC 51 ms
61,824 KB
testcase_17 AC 92 ms
76,544 KB
testcase_18 AC 96 ms
78,848 KB
testcase_19 AC 81 ms
71,680 KB
testcase_20 AC 70 ms
68,480 KB
testcase_21 AC 87 ms
75,136 KB
testcase_22 AC 87 ms
76,288 KB
testcase_23 AC 96 ms
79,232 KB
testcase_24 AC 97 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

N,K = map(int,stdin.readline().split())

A = list(map(int,stdin.readline().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