結果

問題 No.251 大きな桁の復習問題(1)
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-07-30 14:29:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 636 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-04-17 15:38:25
合計ジャッジ時間 2,346 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,936 KB
testcase_01 WA -
testcase_02 AC 40 ms
55,040 KB
testcase_03 AC 41 ms
55,168 KB
testcase_04 AC 39 ms
55,680 KB
testcase_05 AC 41 ms
55,424 KB
testcase_06 AC 41 ms
55,424 KB
testcase_07 AC 46 ms
55,552 KB
testcase_08 AC 39 ms
55,168 KB
testcase_09 AC 62 ms
76,032 KB
testcase_10 AC 62 ms
76,032 KB
testcase_11 AC 64 ms
75,776 KB
testcase_12 AC 62 ms
75,904 KB
testcase_13 AC 64 ms
76,544 KB
testcase_14 AC 61 ms
76,544 KB
testcase_15 AC 60 ms
76,416 KB
testcase_16 AC 61 ms
76,288 KB
testcase_17 AC 61 ms
75,904 KB
testcase_18 AC 61 ms
76,160 KB
testcase_19 AC 59 ms
75,904 KB
testcase_20 AC 39 ms
55,680 KB
testcase_21 AC 38 ms
55,680 KB
testcase_22 AC 38 ms
55,168 KB
testcase_23 AC 37 ms
55,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = list(input())[:-1]
M = list(input())[:-1]
N = [int(i) for i in N]
M = [int(i) for i in M]
mod = 129402307

def f(X,m):
    n = len(X)
    I = 1
    now = 0
    for i in range(n-1,-1,-1):
        now += X[i]*I
        now %= m
        I *= 10
        I %= m
    return now
    
    
n = f(N,mod)
if n==0:
    print(0)
    exit()
if n==1:
    print(1)
    exit()
m = f(M,mod-1)
if m==0:
    print(1)
    exit()
print(pow(n,m,mod))

0