結果

問題 No.1595 The Final Digit
ユーザー O2MTO2MT
提出日時 2021-07-09 22:34:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 560 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 55,796 KB
最終ジャッジ日時 2024-07-01 17:14:57
合計ジャッジ時間 3,221 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,784 KB
testcase_01 AC 44 ms
53,808 KB
testcase_02 AC 42 ms
53,536 KB
testcase_03 AC 43 ms
53,652 KB
testcase_04 AC 43 ms
54,988 KB
testcase_05 AC 43 ms
54,216 KB
testcase_06 AC 43 ms
55,796 KB
testcase_07 AC 43 ms
55,292 KB
testcase_08 AC 43 ms
53,896 KB
testcase_09 AC 41 ms
55,096 KB
testcase_10 AC 40 ms
54,896 KB
testcase_11 AC 41 ms
53,768 KB
testcase_12 AC 42 ms
55,424 KB
testcase_13 AC 42 ms
54,792 KB
testcase_14 AC 42 ms
54,188 KB
testcase_15 AC 41 ms
55,072 KB
testcase_16 AC 42 ms
54,852 KB
testcase_17 AC 41 ms
54,180 KB
testcase_18 AC 42 ms
54,016 KB
testcase_19 AC 41 ms
55,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

p,q,r,K = map(int,input().split())
p,q,r = int(str(p)[-1]),int(str(q)[-1]),int(str(r)[-1])
check = [[[0]*10 for _ in range(10)] for _ in range(10)]
check[p][q][r] = 3
memo = [p,q,r]
count = 3
l = deque([p,q,r])
while count < K:
  count += 1
  num = sum(l)
  num = int(str(num)[-1])
  l.popleft()
  l.append(num)
  memo.append(num)
  i,j,k = l[0],l[1],l[2]
  if check[i][j][k] > 0:
    turn = count-check[i][j][k]
    K %= turn
    ans = memo[check[i][j][k]+K-4]
    print(ans)
    exit()
  check[i][j][k] = count

print(memo[-1])
0