結果

問題 No.1343 Dividing Digit
ユーザー NoaSaberNoaSaber
提出日時 2021-04-24 08:55:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 80,384 KB
最終ジャッジ日時 2024-07-04 09:01:08
合計ジャッジ時間 2,220 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 35 ms
51,456 KB
testcase_03 AC 61 ms
80,256 KB
testcase_04 AC 42 ms
61,056 KB
testcase_05 AC 52 ms
64,768 KB
testcase_06 AC 43 ms
62,592 KB
testcase_07 AC 48 ms
67,200 KB
testcase_08 AC 58 ms
75,648 KB
testcase_09 AC 62 ms
77,824 KB
testcase_10 AC 43 ms
61,824 KB
testcase_11 AC 47 ms
66,688 KB
testcase_12 AC 54 ms
73,984 KB
testcase_13 AC 54 ms
72,576 KB
testcase_14 AC 42 ms
61,952 KB
testcase_15 AC 48 ms
65,536 KB
testcase_16 AC 43 ms
61,824 KB
testcase_17 AC 58 ms
77,824 KB
testcase_18 AC 60 ms
79,616 KB
testcase_19 AC 54 ms
72,192 KB
testcase_20 AC 51 ms
69,120 KB
testcase_21 AC 57 ms
75,904 KB
testcase_22 AC 57 ms
77,440 KB
testcase_23 AC 63 ms
80,384 KB
testcase_24 AC 58 ms
78,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
tmp=1
sum_n=0
sum_b=sum(A)
for i in A[::-1]:
    sum_n+=tmp*i%sum_b
    tmp*=K
    tmp%=sum_b
    sum_n%=sum_b
print(sum_n%sum_b)
0