結果

問題 No.251 大きな桁の復習問題(1)
ユーザー tassei903tassei903
提出日時 2021-10-25 00:27:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 426 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 69,560 KB
最終ジャッジ日時 2024-04-10 05:50:36
合計ジャッジ時間 2,516 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,980 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 36 ms
53,748 KB
testcase_06 AC 36 ms
52,280 KB
testcase_07 AC 36 ms
53,100 KB
testcase_08 AC 35 ms
53,004 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 WA -
testcase_21 AC 36 ms
51,968 KB
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n  = ni()
m = ni()
print(pow(n,m,129402306))
0