結果

問題 No.1343 Dividing Digit
ユーザー tcltktcltk
提出日時 2021-01-20 17:59:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 103,000 KB
最終ジャッジ日時 2024-06-02 11:01:34
合計ジャッジ時間 4,544 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
88,960 KB
testcase_01 AC 110 ms
89,088 KB
testcase_02 AC 112 ms
89,240 KB
testcase_03 AC 166 ms
102,668 KB
testcase_04 AC 117 ms
89,728 KB
testcase_05 AC 124 ms
91,044 KB
testcase_06 AC 119 ms
89,824 KB
testcase_07 AC 131 ms
93,056 KB
testcase_08 AC 155 ms
99,200 KB
testcase_09 AC 159 ms
101,248 KB
testcase_10 AC 120 ms
89,344 KB
testcase_11 AC 132 ms
92,288 KB
testcase_12 AC 152 ms
98,304 KB
testcase_13 AC 147 ms
96,896 KB
testcase_14 AC 120 ms
89,600 KB
testcase_15 AC 128 ms
91,692 KB
testcase_16 AC 120 ms
89,972 KB
testcase_17 AC 158 ms
101,164 KB
testcase_18 AC 164 ms
103,000 KB
testcase_19 AC 146 ms
96,384 KB
testcase_20 AC 135 ms
94,636 KB
testcase_21 AC 157 ms
99,840 KB
testcase_22 AC 169 ms
101,120 KB
testcase_23 AC 168 ms
102,844 KB
testcase_24 AC 165 ms
102,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)

def main():
    N, K = map(int, input().split())
    A = list(reversed(list(map(int, input().split()))))

    SumA = sum(A)
    A = sum((A[i] * pow(K, i, SumA)) % SumA for i in range(N))
    print(A % SumA)


if __name__ == '__main__':
    main()
0