結果

問題 No.1343 Dividing Digit
ユーザー ThetaTheta
提出日時 2022-10-13 11:34:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 875 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,616 KB
最終ジャッジ日時 2024-06-26 11:57:12
合計ジャッジ時間 2,902 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 78 ms
20,152 KB
testcase_04 AC 33 ms
11,776 KB
testcase_05 AC 43 ms
13,568 KB
testcase_06 AC 39 ms
12,544 KB
testcase_07 AC 51 ms
14,456 KB
testcase_08 AC 71 ms
18,184 KB
testcase_09 AC 74 ms
19,088 KB
testcase_10 AC 36 ms
12,160 KB
testcase_11 AC 48 ms
13,824 KB
testcase_12 AC 63 ms
17,840 KB
testcase_13 AC 61 ms
17,072 KB
testcase_14 AC 36 ms
12,032 KB
testcase_15 AC 45 ms
13,684 KB
testcase_16 AC 35 ms
12,160 KB
testcase_17 AC 71 ms
19,028 KB
testcase_18 AC 77 ms
20,116 KB
testcase_19 AC 63 ms
17,136 KB
testcase_20 AC 52 ms
15,232 KB
testcase_21 AC 69 ms
18,860 KB
testcase_22 AC 72 ms
18,400 KB
testcase_23 AC 80 ms
20,616 KB
testcase_24 AC 66 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import cycle, chain
from math import inf


def calc_power_mod_loop(
        num: int, mod: int, digits: int = 1e6) -> tuple[list[int], int]:
    rests = [1]
    num_rest = num % mod
    power_num = num_rest
    ctr = 1
    while ctr < digits:
        try:
            exist_index = rests.index(power_num % mod)
            return rests, exist_index
        except ValueError:
            rests.append(power_num % mod)
            power_num *= num_rest
            ctr += 1
    return rests, -1


def main():
    N, K = map(int, input().split())
    digits = list(map(int, input().split()))
    digit_sum = sum(digits)

    K_rest = K % digit_sum

    rest = 0
    K_power = 1
    for digit in reversed(digits):
        rest += digit * K_power
        K_power = (K_power * K_rest) % digit_sum
    print(rest % digit_sum)


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