結果

問題 No.167 N^M mod 10
ユーザー 河野竜也
提出日時 2021-08-26 21:29:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 289 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-18 18:50:39
合計ジャッジ時間 1,862 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 17 RE * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
m=int(input())
n%=10
ans=[]
cnt=1
if m==0:
  print(1)
  exit()
for i in range(11):
  cnt*=n
  cnt%=10
  if cnt not in ans:
    ans.append(cnt)
  else:
    l=ans.index(cnt)
    r=i
    if m<=l:
      print(ans[m-1])
    else:
      b=m%(r-l)
      print(ans[b+l-1])
    break
0