結果

問題 No.1343 Dividing Digit
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-24 13:26:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,408 KB
最終ジャッジ日時 2024-05-08 06:32:47
合計ジャッジ時間 5,386 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,624 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 33 ms
10,624 KB
testcase_03 AC 297 ms
20,064 KB
testcase_04 AC 56 ms
11,520 KB
testcase_05 AC 98 ms
13,440 KB
testcase_06 AC 76 ms
12,416 KB
testcase_07 AC 124 ms
14,308 KB
testcase_08 AC 232 ms
18,104 KB
testcase_09 AC 262 ms
18,916 KB
testcase_10 AC 62 ms
11,904 KB
testcase_11 AC 117 ms
13,824 KB
testcase_12 AC 209 ms
17,276 KB
testcase_13 AC 195 ms
16,864 KB
testcase_14 AC 58 ms
11,776 KB
testcase_15 AC 109 ms
13,568 KB
testcase_16 AC 62 ms
12,032 KB
testcase_17 AC 253 ms
18,940 KB
testcase_18 AC 284 ms
19,976 KB
testcase_19 AC 203 ms
17,188 KB
testcase_20 AC 153 ms
14,848 KB
testcase_21 AC 256 ms
18,344 KB
testcase_22 AC 252 ms
18,384 KB
testcase_23 AC 301 ms
20,408 KB
testcase_24 AC 231 ms
12,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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