結果

問題 No.167 N^M mod 10
ユーザー nobigomu
提出日時 2018-05-29 12:23:18
言語 Lua
(LuaJit 2.1.1734355927)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 215 bytes
コンパイル時間 57 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-22 01:45:58
合計ジャッジ時間 968 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

print((function (n, m)
	if m=="0" then return 1 end m=tonumber(m)%4==0 and 4 or tonumber(m)%4
	if n=="0" then return 0 end n=tonumber(n)
	return n^m%10
end)(io.stdin:read("*l"):sub(-1), io.stdin:read("*l"):sub(-2)))
0