結果

問題 No.1343 Dividing Digit
ユーザー kyo1kyo1
提出日時 2021-01-21 06:15:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,572 KB
最終ジャッジ日時 2024-06-06 12:23:47
合計ジャッジ時間 4,897 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,368 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 286 ms
20,056 KB
testcase_04 AC 50 ms
11,392 KB
testcase_05 AC 94 ms
13,184 KB
testcase_06 AC 70 ms
12,032 KB
testcase_07 AC 120 ms
14,172 KB
testcase_08 AC 234 ms
17,840 KB
testcase_09 AC 256 ms
18,656 KB
testcase_10 AC 59 ms
11,904 KB
testcase_11 AC 114 ms
13,696 KB
testcase_12 AC 214 ms
17,152 KB
testcase_13 AC 195 ms
16,732 KB
testcase_14 AC 55 ms
11,648 KB
testcase_15 AC 104 ms
13,440 KB
testcase_16 AC 59 ms
11,776 KB
testcase_17 AC 256 ms
18,812 KB
testcase_18 AC 285 ms
19,716 KB
testcase_19 AC 197 ms
17,052 KB
testcase_20 AC 143 ms
14,708 KB
testcase_21 AC 250 ms
18,084 KB
testcase_22 AC 256 ms
18,256 KB
testcase_23 AC 301 ms
20,572 KB
testcase_24 AC 240 ms
12,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))[::-1]

mod = sum(A)

res = 0
for i, a in enumerate(A):
    res += a * pow(K, i, mod) % mod
    res %= mod

print(res)
0