結果

問題 No.2007 Arbitrary Mod (Easy)
ユーザー yumechi
提出日時 2023-01-30 00:08:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 64 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 53,524 KB
最終ジャッジ日時 2024-06-29 19:02:59
合計ジャッジ時間 3,353 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

a,n=map(int,input().split());t=10**7;print(f"{t}\n{pow(a,n,t)}")
0