結果

問題 No.434 占い
ユーザー rlangevinrlangevin
提出日時 2023-10-17 22:23:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 791 ms / 2,000 ms
コード長 1,831 bytes
コンパイル時間 644 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 87,940 KB
最終ジャッジ日時 2024-09-17 19:37:49
合計ジャッジ時間 8,612 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
55,748 KB
testcase_01 AC 32 ms
55,424 KB
testcase_02 AC 32 ms
54,864 KB
testcase_03 AC 37 ms
61,936 KB
testcase_04 AC 38 ms
63,416 KB
testcase_05 AC 37 ms
61,860 KB
testcase_06 AC 43 ms
65,212 KB
testcase_07 AC 63 ms
76,060 KB
testcase_08 AC 120 ms
79,552 KB
testcase_09 AC 147 ms
80,116 KB
testcase_10 AC 115 ms
79,336 KB
testcase_11 AC 149 ms
80,388 KB
testcase_12 AC 67 ms
78,244 KB
testcase_13 AC 129 ms
80,416 KB
testcase_14 AC 140 ms
81,708 KB
testcase_15 AC 791 ms
86,456 KB
testcase_16 AC 453 ms
81,440 KB
testcase_17 AC 345 ms
80,628 KB
testcase_18 AC 257 ms
79,488 KB
testcase_19 AC 232 ms
81,024 KB
testcase_20 AC 86 ms
79,232 KB
testcase_21 AC 781 ms
86,688 KB
testcase_22 AC 463 ms
82,688 KB
testcase_23 AC 39 ms
61,976 KB
testcase_24 AC 425 ms
81,288 KB
testcase_25 AC 45 ms
72,836 KB
testcase_26 AC 332 ms
81,376 KB
testcase_27 AC 334 ms
79,948 KB
testcase_28 AC 323 ms
80,488 KB
testcase_29 AC 356 ms
82,444 KB
testcase_30 AC 366 ms
87,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class SegmentTree:
    def __init__(self, size, f=lambda x, y : x * y % 9, default=1):
        self.size = 2**(size-1).bit_length() 
        self.default = default
        self.dat = [default]*(self.size*2) 
        self.f = f

    def update(self, i, x):
        i += self.size
        self.dat[i] = x
        while i > 0:
            i >>= 1
            self.dat[i] = self.f(self.dat[i*2], self.dat[i*2+1])

    def query(self, l, r):
        l += self.size
        r += self.size
        lres, rres = self.default, self.default
        while l < r:
            if l & 1:
                lres = self.f(lres, self.dat[l])
                l += 1

            if r & 1:
                r -= 1
                rres = self.f(self.dat[r], rres) 
            l >>= 1
            r >>= 1
        res = self.f(lres, rres)
        return res

def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])

    if temp!=1:
        arr.append([temp, 1])

    return arr

Q = int(input().rstrip())
T = SegmentTree(10**5+5)
for _ in range(Q):
    S = list(input().rstrip())
    S = list(map(int, S))
    if len(set(S)) == 1 and S[0] == 0:
        print(0)
        continue
    
    N = len(S) - 1
    L = [0] * (N + 1)
    ans = S[0]
    for i in range(1, N + 1):
        SS = set()
        for t in factorization(N - i + 1):
            SS.add(t[0])
            L[t[0]] += t[1]
        for t in factorization(i):
            SS.add(t[0])
            L[t[0]] -= t[1]
        for s in SS:
            T.update(s, pow(s, L[s], 9))
        ans += T.query(0, N + 1) * S[i]
        ans %= 9
    print(ans) if ans else print(9)
0