結果

問題 No.1458 Segment Function
ユーザー shotoyooshotoyoo
提出日時 2021-03-31 21:42:49
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 587 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 76,684 KB
最終ジャッジ日時 2024-10-12 13:35:23
合計ジャッジ時間 3,718 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
73,552 KB
testcase_01 AC 52 ms
71,980 KB
testcase_02 AC 53 ms
73,104 KB
testcase_03 AC 55 ms
73,688 KB
testcase_04 AC 53 ms
72,980 KB
testcase_05 AC 52 ms
72,452 KB
testcase_06 AC 55 ms
72,760 KB
testcase_07 AC 53 ms
72,512 KB
testcase_08 AC 66 ms
76,568 KB
testcase_09 AC 65 ms
76,684 KB
testcase_10 AC 65 ms
76,500 KB
testcase_11 AC 66 ms
76,608 KB
testcase_12 AC 65 ms
76,384 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 53 ms
72,808 KB
testcase_24 AC 39 ms
53,852 KB
testcase_25 AC 54 ms
72,988 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 38 ms
52,892 KB
testcase_29 AC 40 ms
54,216 KB
testcase_30 AC 41 ms
54,108 KB
testcase_31 RE -
testcase_32 AC 67 ms
76,572 KB
testcase_33 AC 66 ms
76,256 KB
testcase_34 AC 66 ms
76,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")

p,n = input().split()
n = int(n)
l = [6,2,5,5,4,5,6,4,7,6]
if n==0:
    write(p)
else:
    n -= 1
    if p[0]=="-":
        v = sum((l[v] for v in map(int, p[1:]))) + 1
    else:
        v = sum((l[v] for v in map(int, p)))
    res = []
    for _ in range(10000):
        res.append(v)
        v = sum((l[int(vv)] for vv in str(v)))
    if n>=len(res):
        print(res[-1])
    else:
        print(res[n])
0