結果

問題 No.2007 Arbitrary Mod (Easy)
ユーザー yumechi
提出日時 2023-01-30 00:04:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 50 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 54,032 KB
最終ジャッジ日時 2024-06-29 18:59:21
合計ジャッジ時間 4,567 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

a,n=map(int,input().split())
print(pow(a,n,10**7))
0