結果

問題 No.1343 Dividing Digit
ユーザー dangodango
提出日時 2023-06-25 15:00:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 80,728 KB
最終ジャッジ日時 2024-07-02 13:23:49
合計ジャッジ時間 3,020 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,376 KB
testcase_01 AC 38 ms
53,508 KB
testcase_02 AC 41 ms
51,996 KB
testcase_03 AC 100 ms
80,100 KB
testcase_04 AC 47 ms
62,112 KB
testcase_05 AC 57 ms
65,488 KB
testcase_06 AC 50 ms
63,104 KB
testcase_07 AC 63 ms
68,856 KB
testcase_08 AC 85 ms
75,716 KB
testcase_09 AC 92 ms
77,504 KB
testcase_10 AC 49 ms
62,536 KB
testcase_11 AC 60 ms
67,352 KB
testcase_12 AC 78 ms
74,544 KB
testcase_13 AC 78 ms
73,672 KB
testcase_14 AC 48 ms
62,624 KB
testcase_15 AC 59 ms
65,540 KB
testcase_16 AC 49 ms
62,656 KB
testcase_17 AC 90 ms
77,736 KB
testcase_18 AC 99 ms
80,728 KB
testcase_19 AC 78 ms
73,072 KB
testcase_20 AC 68 ms
68,956 KB
testcase_21 AC 88 ms
75,772 KB
testcase_22 AC 90 ms
78,024 KB
testcase_23 AC 98 ms
80,336 KB
testcase_24 AC 96 ms
79,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
S = sum(A)
ans = 0
for i in range(N):
    ans += A[N - i - 1] * pow(K, i, S)
    ans %= S
print(ans)
0