結果

問題 No.167 N^M mod 10
ユーザー d2verb
提出日時 2015-05-05 12:45:08
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 84 bytes
コンパイル時間 47 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-07-05 19:07:55
合計ジャッジ時間 1,170 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 8 WA * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

N = raw_input()
M = raw_input()
N = int(N)
M = int(M) % 5
ANS = N**M % 10
print ANS
0