結果

問題 No.434 占い
ユーザー tktk_snsntktk_snsn
提出日時 2021-09-04 13:15:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 443 ms / 2,000 ms
コード長 1,441 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 16,768 KB
最終ジャッジ日時 2024-12-17 22:14:00
合計ジャッジ時間 7,882 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
16,256 KB
testcase_01 AC 129 ms
16,512 KB
testcase_02 AC 133 ms
16,256 KB
testcase_03 AC 136 ms
16,512 KB
testcase_04 AC 129 ms
16,512 KB
testcase_05 AC 130 ms
16,384 KB
testcase_06 AC 134 ms
16,384 KB
testcase_07 AC 128 ms
16,512 KB
testcase_08 AC 138 ms
16,256 KB
testcase_09 AC 137 ms
16,384 KB
testcase_10 AC 138 ms
16,384 KB
testcase_11 AC 139 ms
16,640 KB
testcase_12 AC 164 ms
16,640 KB
testcase_13 AC 133 ms
16,256 KB
testcase_14 AC 135 ms
16,384 KB
testcase_15 AC 203 ms
16,640 KB
testcase_16 AC 210 ms
16,512 KB
testcase_17 AC 202 ms
16,384 KB
testcase_18 AC 204 ms
16,384 KB
testcase_19 AC 231 ms
16,512 KB
testcase_20 AC 443 ms
16,512 KB
testcase_21 AC 202 ms
16,640 KB
testcase_22 AC 216 ms
16,384 KB
testcase_23 AC 134 ms
16,384 KB
testcase_24 AC 199 ms
16,512 KB
testcase_25 AC 138 ms
16,640 KB
testcase_26 AC 169 ms
16,384 KB
testcase_27 AC 202 ms
16,384 KB
testcase_28 AC 206 ms
16,512 KB
testcase_29 AC 243 ms
16,640 KB
testcase_30 AC 395 ms
16,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""\
参考
https://yukicoder.me/submissions/438049
"""
import sys
input = sys.stdin.readline
sys.setrecursionlimit(10 ** 7)


def euler_phi(N):
    """
    Euler totient function
    [1,N]の自然数のうちNと互いに素なものの個数
    """
    res = N
    for i in range(2, int(N ** 0.5) + 1):
        if N % i == 0:
            res -= res // i
            while N % i == 0:
                N //= i
    if N > 1:
        res -= res // N
    return res


def euler_phi_table(N):
    res = list(range(N))
    for i in range(2, N):
        if res[i] == i:
            for j in range(i, N, i):
                res[j] = res[j] // i * (i - 1)
    return res


U = 10 ** 5

fact = [1] * (U + 1)
fact_ord = [0] * (U + 1)
for n in range(1, U+1):
    e = 0
    m = n
    while m % 3 == 0:
        m //= 3
        e += 1
    fact[n] = fact[n-1] * m % 9
    fact_ord[n] = fact_ord[n-1] + e

phi = euler_phi(9)
inv = [pow(x, phi - 1, 9) for x in fact]


def comb(n, k):
    e = fact_ord[n] - fact_ord[k] - fact_ord[n-k]
    if e >= 2:
        return 0
    res = fact[n] * inv[k] * inv[n-k]
    if e == 1:
        return res * 3 % 9
    return res % 9


T = int(input())
for _ in range(T):
    S = input().rstrip()
    if all(s == "0" for s in S):
        print(0)
        continue
    res = 0
    n = len(S) - 1
    for i, s in enumerate(S):
        res += int(s) * comb(n, i)
        res %= 9
    if res == 0:
        res = 9
    print(res)
0