結果

問題 No.1595 The Final Digit
ユーザー harurunharurun
提出日時 2021-07-09 21:59:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 1,894 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-07-01 16:20:31
合計ジャッジ時間 1,764 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,016 KB
testcase_01 AC 47 ms
53,504 KB
testcase_02 AC 46 ms
53,504 KB
testcase_03 AC 42 ms
53,664 KB
testcase_04 AC 42 ms
53,504 KB
testcase_05 AC 43 ms
53,760 KB
testcase_06 AC 42 ms
54,016 KB
testcase_07 AC 42 ms
53,888 KB
testcase_08 AC 42 ms
54,272 KB
testcase_09 AC 42 ms
54,272 KB
testcase_10 AC 43 ms
53,504 KB
testcase_11 AC 43 ms
53,888 KB
testcase_12 AC 42 ms
53,888 KB
testcase_13 AC 42 ms
54,016 KB
testcase_14 AC 43 ms
53,760 KB
testcase_15 AC 43 ms
54,060 KB
testcase_16 AC 42 ms
53,632 KB
testcase_17 AC 43 ms
53,888 KB
testcase_18 AC 43 ms
53,760 KB
testcase_19 AC 43 ms
54,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class INPUT:
  def __init__(self):
    self._l=open(0).read().split()
    self._length=len(self._l)
    self._index=0
    return

  def stream(self,k=1,f=int,f2=False):
    assert(-1<k)
    if self._length==self._index or self._length-self._index<k:
      raise Exception("There is no input!")
    elif f!=str:
      if k==0:
        ret=list(map(f,self._l[self._index:]))
        self._index=self._length
        return ret
      if k==1 and not f2:
        ret=f(self._l[self._index])
        self._index+=1
        return ret
      if k==1 and f2:
        ret=[f(self._l[self._index])]
        self._index+=1
        return ret
      ret=[]
      for _ in [0]*k:
        ret.append(f(self._l[self._index]))
        self._index+=1
      return ret
    else:
      if k==0:
        ret=list(self._l[self._index:])
        self._index=self._length
        return ret
      if k==1 and not f2:
        ret=self._l[self._index]
        self._index+=1
        return ret
      if k==1 and f2:
        ret=[self._l[self._index]]
        self._index+=1
        return ret
      ret=[]
      for _ in [0]*k:
        ret.append(self._l[self._index])
        self._index+=1
      return ret
pin=INPUT().stream


#pin(number[default:1],f[default:int],f2[default:False])
#if number==0 -> return left all
#listを変数で受け取るとき、必ずlistをTrueにすること。

from collections import Counter
def main():
  p,q,r,K=pin(4)
  p%=10
  q%=10
  r%=10
  A=[p,q,r]
  S=Counter()
  for i in range(K-3):
    t=(A[i]+A[i+1]+A[i+2])%10
    #print(S[(A[i],A[i+1],A[i+2])])
    if S[(A[i],A[i+1],A[i+2])]!=0:
      u=S[(A[i],A[i+1],A[i+2])]-1
      loop=i-u
      left=K-i-1
      v=left%loop
      print(A[u+v])
      #print(A)
      #print(u,v)
      #print(i,len(A))
      #print(left,loop)
      return
    S[(A[i],A[i+1],A[i+2])]=i+1
    A.append(t)
  print(A[-1])
  #print(A)
  return

main()
0