結果

問題 No.1343 Dividing Digit
ユーザー Omura ShunsukeOmura Shunsuke
提出日時 2021-01-16 15:45:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 88,064 KB
最終ジャッジ日時 2024-11-27 18:39:43
合計ジャッジ時間 2,606 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,456 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 76 ms
87,680 KB
testcase_04 AC 46 ms
62,208 KB
testcase_05 AC 49 ms
66,944 KB
testcase_06 AC 47 ms
64,000 KB
testcase_07 AC 52 ms
70,272 KB
testcase_08 AC 62 ms
81,536 KB
testcase_09 AC 65 ms
84,736 KB
testcase_10 AC 46 ms
63,232 KB
testcase_11 AC 51 ms
68,992 KB
testcase_12 AC 60 ms
79,488 KB
testcase_13 AC 58 ms
77,312 KB
testcase_14 AC 46 ms
62,848 KB
testcase_15 AC 49 ms
68,480 KB
testcase_16 AC 45 ms
63,104 KB
testcase_17 AC 65 ms
84,480 KB
testcase_18 AC 68 ms
87,552 KB
testcase_19 AC 59 ms
76,928 KB
testcase_20 AC 54 ms
72,576 KB
testcase_21 AC 64 ms
82,304 KB
testcase_22 AC 64 ms
83,328 KB
testcase_23 AC 67 ms
88,064 KB
testcase_24 AC 65 ms
86,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))

A=A[::-1]

mod=sum(A)

L=[1]
for i in range(1,N):
    L.append(L[-1]*K%mod)
#print(L)

ans=0
for i in range(N):
    ans+=A[i]*L[i]
print(ans%mod)
0