結果

問題 No.434 占い
ユーザー H3PO4H3PO4
提出日時 2023-07-15 10:46:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 683 ms / 2,000 ms
コード長 856 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-09-16 19:03:18
合計ジャッジ時間 5,942 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 36 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 44 ms
10,752 KB
testcase_09 AC 43 ms
10,752 KB
testcase_10 AC 44 ms
10,752 KB
testcase_11 AC 49 ms
10,624 KB
testcase_12 AC 98 ms
10,752 KB
testcase_13 AC 45 ms
10,752 KB
testcase_14 AC 44 ms
10,752 KB
testcase_15 AC 171 ms
12,032 KB
testcase_16 AC 164 ms
10,752 KB
testcase_17 AC 165 ms
10,880 KB
testcase_18 AC 161 ms
10,752 KB
testcase_19 AC 219 ms
10,624 KB
testcase_20 AC 683 ms
10,752 KB
testcase_21 AC 169 ms
11,904 KB
testcase_22 AC 172 ms
10,880 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 147 ms
10,880 KB
testcase_25 AC 28 ms
10,752 KB
testcase_26 AC 94 ms
11,264 KB
testcase_27 AC 166 ms
10,880 KB
testcase_28 AC 170 ms
10,880 KB
testcase_29 AC 247 ms
11,776 KB
testcase_30 AC 576 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def mod9(x):
    assert x > 0
    ct = 0
    while True:
        div, mod = divmod(x, 3)
        if mod != 0:
            return ct, x % 9
        x = div
        ct += 1

def solve(S: str):
    if S.count("0") == len(S):
        return 0
    T = tuple(int(s) for s in S)
    L = len(T)
    ans = T[0]
    c_pow3 = 0
    c_mod3 = 1
    c_mod9 = 1
    for i in range(1, L):
        # *= (L-i)
        ct, mod = mod9(L - i)
        c_pow3 += ct
        c_mod9 *= mod
        c_mod9 %= 9

        # /= i
        ct, mod = mod9(i)
        c_pow3 -= ct
        c_mod9 *= pow(mod, -1, 9)
        c_mod9 %= 9

        assert c_pow3 >= 0

        if c_pow3 == 0:
            ans += T[i] * c_mod9
        elif c_pow3 == 1:
            ans += T[i] * c_mod9 * 3
    ans = (ans - 1) % 9 + 1
    return ans

T = int(input())
for _ in range(T):
    print(solve(input()))
0