結果

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

ソースコード

diff #

a,n = map(int,input().split())
print(mod)
print(pow(a,n,mod))
0