結果

問題 No.1343 Dividing Digit
ユーザー O2MTO2MT
提出日時 2021-02-12 12:57:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 79,360 KB
最終ジャッジ日時 2024-07-19 07:00:24
合計ジャッジ時間 2,476 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 44 ms
51,840 KB
testcase_03 AC 69 ms
78,720 KB
testcase_04 AC 47 ms
60,672 KB
testcase_05 AC 51 ms
64,384 KB
testcase_06 AC 45 ms
62,720 KB
testcase_07 AC 53 ms
66,688 KB
testcase_08 AC 62 ms
74,880 KB
testcase_09 AC 63 ms
76,416 KB
testcase_10 AC 48 ms
61,952 KB
testcase_11 AC 51 ms
66,048 KB
testcase_12 AC 61 ms
73,472 KB
testcase_13 AC 59 ms
71,552 KB
testcase_14 AC 45 ms
61,056 KB
testcase_15 AC 48 ms
64,896 KB
testcase_16 AC 48 ms
61,440 KB
testcase_17 AC 63 ms
76,672 KB
testcase_18 AC 64 ms
79,360 KB
testcase_19 AC 56 ms
71,552 KB
testcase_20 AC 54 ms
68,736 KB
testcase_21 AC 61 ms
75,136 KB
testcase_22 AC 63 ms
76,356 KB
testcase_23 AC 66 ms
79,360 KB
testcase_24 AC 63 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

########関数部分##############
def Base_n_to_10(X,n,a):
    out = 0
    k = 1
    for i in range(len(X)):
        x = X[i]
        if i > 0:
            k *= n
        k %= a
        out += x*k
        out %= a

    return out#int out
############################

N,K = map(int,input().split())
A = list(map(int,input().split()))
sumA = sum(A)
A.reverse()
numA = Base_n_to_10(A,K,sumA)

print(numA%sumA)
0