結果

問題 No.1343 Dividing Digit
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-13 00:31:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 90,880 KB
最終ジャッジ日時 2024-11-15 18:28:46
合計ジャッジ時間 3,497 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 115 ms
90,240 KB
testcase_04 AC 54 ms
62,464 KB
testcase_05 AC 64 ms
67,840 KB
testcase_06 AC 58 ms
64,256 KB
testcase_07 AC 73 ms
71,168 KB
testcase_08 AC 102 ms
83,840 KB
testcase_09 AC 109 ms
86,528 KB
testcase_10 AC 55 ms
63,360 KB
testcase_11 AC 70 ms
69,760 KB
testcase_12 AC 94 ms
81,280 KB
testcase_13 AC 90 ms
78,720 KB
testcase_14 AC 54 ms
62,976 KB
testcase_15 AC 69 ms
68,736 KB
testcase_16 AC 55 ms
63,360 KB
testcase_17 AC 105 ms
86,656 KB
testcase_18 AC 114 ms
89,728 KB
testcase_19 AC 92 ms
78,592 KB
testcase_20 AC 78 ms
73,856 KB
testcase_21 AC 103 ms
83,968 KB
testcase_22 AC 105 ms
86,272 KB
testcase_23 AC 114 ms
90,880 KB
testcase_24 AC 114 ms
88,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
ns=list(map(int,input().split()))
nss=''.join(list(map(str,ns)))
nssum=sum(ns)

def  n_t(X,n):
    t = 0
    cnt=0
    for i in range(len(X)-1,-1,-1):
        t += X[cnt]*(pow(n,i,nssum)) % nssum
        cnt+=1
    return t
ns10 = n_t(ns,k)

print(ns10%nssum)

0