結果

問題 No.1343 Dividing Digit
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-24 13:26:50
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,412 KB
最終ジャッジ日時 2024-12-14 08:14:23
合計ジャッジ時間 5,054 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 290 ms
19,932 KB
testcase_04 AC 51 ms
11,392 KB
testcase_05 AC 94 ms
13,184 KB
testcase_06 AC 70 ms
12,160 KB
testcase_07 AC 121 ms
14,436 KB
testcase_08 AC 230 ms
17,972 KB
testcase_09 AC 258 ms
18,792 KB
testcase_10 AC 61 ms
11,904 KB
testcase_11 AC 114 ms
13,568 KB
testcase_12 AC 208 ms
17,172 KB
testcase_13 AC 193 ms
16,860 KB
testcase_14 AC 58 ms
11,776 KB
testcase_15 AC 106 ms
13,696 KB
testcase_16 AC 60 ms
12,032 KB
testcase_17 AC 250 ms
18,816 KB
testcase_18 AC 277 ms
19,976 KB
testcase_19 AC 196 ms
16,932 KB
testcase_20 AC 144 ms
14,716 KB
testcase_21 AC 242 ms
18,220 KB
testcase_22 AC 245 ms
18,260 KB
testcase_23 AC 295 ms
20,412 KB
testcase_24 AC 231 ms
12,608 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