結果

問題 No.1343 Dividing Digit
ユーザー tcltktcltk
提出日時 2021-01-20 17:57:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 102,272 KB
最終ジャッジ日時 2024-06-02 10:59:50
合計ジャッジ時間 5,287 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
88,832 KB
testcase_01 AC 133 ms
89,088 KB
testcase_02 AC 136 ms
89,088 KB
testcase_03 AC 197 ms
102,144 KB
testcase_04 AC 152 ms
89,728 KB
testcase_05 AC 154 ms
90,624 KB
testcase_06 AC 143 ms
89,728 KB
testcase_07 AC 154 ms
92,672 KB
testcase_08 AC 183 ms
99,200 KB
testcase_09 AC 195 ms
100,352 KB
testcase_10 AC 141 ms
89,728 KB
testcase_11 AC 160 ms
91,904 KB
testcase_12 AC 183 ms
97,280 KB
testcase_13 AC 169 ms
96,512 KB
testcase_14 AC 141 ms
89,728 KB
testcase_15 AC 156 ms
91,520 KB
testcase_16 AC 142 ms
89,216 KB
testcase_17 AC 183 ms
100,352 KB
testcase_18 AC 191 ms
102,016 KB
testcase_19 AC 180 ms
96,384 KB
testcase_20 AC 157 ms
94,336 KB
testcase_21 AC 188 ms
98,944 KB
testcase_22 AC 183 ms
100,480 KB
testcase_23 AC 190 ms
102,272 KB
testcase_24 AC 188 ms
101,504 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(map(int, input().split()))

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


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