結果

問題 No.167 N^M mod 10
ユーザー tookunn_1213tookunn_1213
提出日時 2015-03-22 00:11:13
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 75 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 6,520 KB
実行使用メモリ 13,760 KB
最終ジャッジ日時 2023-09-11 09:19:59
合計ジャッジ時間 6,102 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = input(),input()
ans = 1
for i in range(M):
	ans *= N
print (ans % 10)
0