結果

問題 No.2007 Arbitrary Mod (Easy)
ユーザー ああいい
提出日時 2022-07-17 10:59:50
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 74 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 65,664 KB
最終ジャッジ日時 2024-06-29 12:21:20
合計ジャッジ時間 6,410 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

a,n = map(int,input().split())
M = 10 ** 9 + 7
print(M)
print(poow(a,n,M))
0