結果

問題 No.2007 Arbitrary Mod (Easy)
ユーザー rlangevin
提出日時 2025-02-19 08:47:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 81 bytes
コンパイル時間 1,523 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 51,968 KB
最終ジャッジ日時 2025-02-19 08:48:06
合計ジャッジ時間 6,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

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