結果

問題 No.167 N^M mod 10
ユーザー yaoshimaxyaoshimax
提出日時 2015-03-19 23:32:10
言語 Python2
(2.7.18)
結果
AC  
実行時間 13 ms / 1,000 ms
コード長 199 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-09-22 01:04:03
合計ジャッジ時間 1,326 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(raw_input())
M=int(raw_input())
b=N%10
anslist=[b]
cur=(b*b)%10
while cur != b:
    anslist.append(cur)
    cur*=b
    cur%=10
if M==0:
    print 1
    exit()
print anslist[(M-1)%len(anslist)]
0