結果

問題 No.1343 Dividing Digit
ユーザー arahi10arahi10
提出日時 2021-02-19 19:54:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 119 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,704 KB
最終ジャッジ日時 2024-09-16 15:58:52
合計ジャッジ時間 3,229 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 87 ms
19,940 KB
testcase_04 AC 35 ms
11,520 KB
testcase_05 AC 45 ms
13,312 KB
testcase_06 AC 39 ms
12,288 KB
testcase_07 AC 52 ms
14,308 KB
testcase_08 AC 77 ms
17,972 KB
testcase_09 AC 85 ms
18,788 KB
testcase_10 AC 38 ms
11,776 KB
testcase_11 AC 50 ms
13,696 KB
testcase_12 AC 71 ms
17,280 KB
testcase_13 AC 68 ms
16,860 KB
testcase_14 AC 37 ms
11,776 KB
testcase_15 AC 48 ms
13,440 KB
testcase_16 AC 37 ms
11,904 KB
testcase_17 AC 83 ms
18,940 KB
testcase_18 AC 87 ms
19,972 KB
testcase_19 AC 69 ms
16,624 KB
testcase_20 AC 57 ms
14,716 KB
testcase_21 AC 79 ms
18,208 KB
testcase_22 AC 82 ms
18,384 KB
testcase_23 AC 90 ms
20,704 KB
testcase_24 AC 75 ms
12,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
S=sum(a)
now=0
for i in a:
    now=(now*k+i)%S
print(now)
0