結果

問題 No.1343 Dividing Digit
ユーザー miya145592miya145592
提出日時 2023-05-11 00:44:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 159 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-05-05 08:32:20
合計ジャッジ時間 2,581 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 34 ms
51,712 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 93 ms
78,720 KB
testcase_04 AC 47 ms
60,672 KB
testcase_05 AC 52 ms
64,128 KB
testcase_06 AC 47 ms
62,592 KB
testcase_07 AC 57 ms
66,432 KB
testcase_08 AC 80 ms
75,008 KB
testcase_09 AC 90 ms
76,928 KB
testcase_10 AC 49 ms
61,184 KB
testcase_11 AC 58 ms
66,304 KB
testcase_12 AC 76 ms
72,704 KB
testcase_13 AC 74 ms
72,064 KB
testcase_14 AC 46 ms
61,568 KB
testcase_15 AC 54 ms
65,024 KB
testcase_16 AC 45 ms
61,824 KB
testcase_17 AC 85 ms
76,800 KB
testcase_18 AC 91 ms
78,976 KB
testcase_19 AC 73 ms
71,808 KB
testcase_20 AC 65 ms
68,736 KB
testcase_21 AC 82 ms
75,392 KB
testcase_22 AC 81 ms
76,032 KB
testcase_23 AC 94 ms
79,488 KB
testcase_24 AC 93 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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