結果

問題 No.251 大きな桁の復習問題(1)
ユーザー terune
提出日時 2016-09-10 00:17:31
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 109 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-12-17 17:40:07
合計ジャッジ時間 1,620 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10 RE * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N = int(input())
    M = int(input())
    num = 129402307
    print( pow(N,M,num) )

solve()
0