結果

問題 No.251 大きな桁の復習問題(1)
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-07-30 14:33:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 653 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 78,308 KB
最終ジャッジ日時 2024-10-09 09:44:39
合計ジャッジ時間 2,881 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
56,844 KB
testcase_01 AC 48 ms
56,448 KB
testcase_02 AC 48 ms
55,840 KB
testcase_03 AC 47 ms
56,560 KB
testcase_04 AC 46 ms
55,948 KB
testcase_05 AC 47 ms
57,080 KB
testcase_06 AC 47 ms
56,216 KB
testcase_07 AC 48 ms
55,844 KB
testcase_08 AC 47 ms
56,152 KB
testcase_09 AC 70 ms
77,760 KB
testcase_10 AC 68 ms
77,220 KB
testcase_11 AC 68 ms
76,156 KB
testcase_12 AC 68 ms
77,304 KB
testcase_13 AC 69 ms
78,048 KB
testcase_14 AC 69 ms
77,448 KB
testcase_15 AC 68 ms
76,364 KB
testcase_16 AC 69 ms
78,308 KB
testcase_17 AC 69 ms
77,832 KB
testcase_18 AC 69 ms
76,408 KB
testcase_19 AC 68 ms
76,776 KB
testcase_20 AC 46 ms
55,524 KB
testcase_21 AC 47 ms
56,264 KB
testcase_22 AC 45 ms
55,712 KB
testcase_23 AC 45 ms
56,180 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
    
    
m = f(M,mod-1)
n = f(N,mod)
if N == [0]:
    print(0)
    exit()
if n==0:
    if M==[0]:
        print(1)
    else:
        print(0)
    exit()
print(pow(n,m,mod))

0