結果

問題 No.251 大きな桁の復習問題(1)
ユーザー brthyyjpbrthyyjp
提出日時 2021-12-27 10:46:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 483 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 100,904 KB
最終ジャッジ日時 2024-09-25 04:19:29
合計ジャッジ時間 3,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
75,096 KB
testcase_01 WA -
testcase_02 AC 78 ms
75,112 KB
testcase_03 AC 64 ms
74,336 KB
testcase_04 AC 65 ms
74,700 KB
testcase_05 AC 66 ms
76,120 KB
testcase_06 AC 66 ms
74,468 KB
testcase_07 AC 67 ms
74,712 KB
testcase_08 AC 66 ms
74,668 KB
testcase_09 AC 82 ms
87,712 KB
testcase_10 AC 93 ms
100,472 KB
testcase_11 AC 93 ms
100,700 KB
testcase_12 AC 93 ms
100,356 KB
testcase_13 AC 93 ms
100,604 KB
testcase_14 AC 93 ms
100,904 KB
testcase_15 AC 92 ms
100,636 KB
testcase_16 AC 93 ms
100,244 KB
testcase_17 AC 93 ms
100,796 KB
testcase_18 AC 92 ms
100,480 KB
testcase_19 AC 93 ms
100,296 KB
testcase_20 AC 69 ms
74,516 KB
testcase_21 AC 66 ms
75,304 KB
testcase_22 AC 66 ms
75,044 KB
testcase_23 AC 67 ms
74,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = str(input())
m = str(input())

mod = 129402307

N = 10**6
P0 = [0]*N
P0[0] = 1
for i in range(1, N):
    P0[i] = 10*P0[i-1]
    P0[i] %= mod

P1 = [0]*N
P1[0] = 1
for i in range(1, N):
    P1[i] = 10*P1[i-1]
    P1[i] %= mod-1

n = list(n)
m = list(m)
n.reverse()
m.reverse()
y = 0
for i, c in enumerate(m):
    y += int(c)*P1[i]
    y %= mod-1
x = 0
for i, c in enumerate(n):
    x += int(c)*P0[i]
    x %= mod
if x == 0:
    print(0)
    exit()
ans = pow(x, y, mod)
print(ans)
0