結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,096 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 41 ms
51,456 KB
testcase_03 AC 113 ms
79,360 KB
testcase_04 AC 54 ms
60,928 KB
testcase_05 AC 65 ms
64,768 KB
testcase_06 AC 60 ms
62,720 KB
testcase_07 AC 71 ms
67,200 KB
testcase_08 AC 97 ms
75,008 KB
testcase_09 AC 104 ms
77,184 KB
testcase_10 AC 57 ms
61,824 KB
testcase_11 AC 69 ms
66,048 KB
testcase_12 AC 92 ms
73,472 KB
testcase_13 AC 89 ms
72,320 KB
testcase_14 AC 57 ms
61,568 KB
testcase_15 AC 69 ms
65,280 KB
testcase_16 AC 56 ms
62,208 KB
testcase_17 AC 101 ms
77,312 KB
testcase_18 AC 108 ms
78,976 KB
testcase_19 AC 89 ms
71,680 KB
testcase_20 AC 77 ms
68,480 KB
testcase_21 AC 98 ms
75,392 KB
testcase_22 AC 100 ms
76,544 KB
testcase_23 AC 110 ms
79,616 KB
testcase_24 AC 107 ms
78,080 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