結果

問題 No.1343 Dividing Digit
ユーザー convexineqconvexineq
提出日時 2021-01-16 13:33:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 105 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 81,792 KB
最終ジャッジ日時 2024-11-27 13:59:56
合計ジャッジ時間 2,348 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 63 ms
81,536 KB
testcase_04 AC 42 ms
60,544 KB
testcase_05 AC 44 ms
64,896 KB
testcase_06 AC 42 ms
62,428 KB
testcase_07 AC 49 ms
67,200 KB
testcase_08 AC 61 ms
76,800 KB
testcase_09 AC 59 ms
79,232 KB
testcase_10 AC 42 ms
61,568 KB
testcase_11 AC 47 ms
66,816 KB
testcase_12 AC 55 ms
74,880 KB
testcase_13 AC 52 ms
73,216 KB
testcase_14 AC 39 ms
61,440 KB
testcase_15 AC 45 ms
65,536 KB
testcase_16 AC 43 ms
61,696 KB
testcase_17 AC 57 ms
78,852 KB
testcase_18 AC 61 ms
81,536 KB
testcase_19 AC 58 ms
73,600 KB
testcase_20 AC 53 ms
69,376 KB
testcase_21 AC 58 ms
76,928 KB
testcase_22 AC 58 ms
78,720 KB
testcase_23 AC 64 ms
81,792 KB
testcase_24 AC 59 ms
80,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,*a = map(int,open(0).read().split())
s = sum(a)
x = 0
for ai in a:
    x = x*k+ai
    x %= s
print(x)
0