結果

問題 No.167 N^M mod 10
ユーザー kohei2019
提出日時 2021-09-01 01:03:41
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 67 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 65,024 KB
最終ジャッジ日時 2024-11-26 13:10:22
合計ジャッジ時間 2,803 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 2
other RE * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = int(input())
num = N % 10
print(poe(num,M,10))
0