結果

問題 No.2193 メガの下1桁
ユーザー gew1fw
提出日時 2025-06-12 19:20:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,063 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 54,096 KB
最終ジャッジ日時 2025-06-12 19:20:46
合計ジャッジ時間 2,544 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

M = int(input())
D = int(input())
N = int(input())
B = int(input())

if N == 0:
    res = M % B
else:
    current_mod = M % B
    history = [current_mod]
    pos_map = {current_mod: 0}
    found_cycle = False
    cycle_start = 0
    cycle_length = 0

    for step in range(1, N + 1):
        a = (current_mod + D) % B
        e = current_mod

        if a == 0 and e == 0:
            next_mod = 1 % B
        elif a == 0:
            next_mod = 0 % B
        else:
            next_mod = pow(a, e, B)

        if next_mod in pos_map:
            cycle_start = pos_map[next_mod]
            cycle_length = len(history) - cycle_start
            remaining = N - step
            final_pos = cycle_start + (remaining % cycle_length)
            current_mod = history[final_pos]
            found_cycle = True
            break
        else:
            pos_map[next_mod] = len(history)
            history.append(next_mod)
            current_mod = next_mod

    res = current_mod

# Convert res to B base last digit
if res < 10:
    print(res)
else:
    print('A')
0