結果

問題 No.1458 Segment Function
ユーザー AEnAEn
提出日時 2022-06-01 17:43:27
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 574 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,320 KB
最終ジャッジ日時 2024-10-12 13:39:36
合計ジャッジ時間 3,601 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 40 ms
51,712 KB
testcase_07 AC 39 ms
51,712 KB
testcase_08 AC 82 ms
75,824 KB
testcase_09 AC 81 ms
75,660 KB
testcase_10 AC 81 ms
76,256 KB
testcase_11 AC 80 ms
76,276 KB
testcase_12 AC 81 ms
76,168 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 38 ms
51,968 KB
testcase_24 AC 40 ms
53,248 KB
testcase_25 AC 35 ms
51,584 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 36 ms
52,096 KB
testcase_29 AC 38 ms
53,760 KB
testcase_30 AC 39 ms
53,760 KB
testcase_31 RE -
testcase_32 AC 79 ms
76,320 KB
testcase_33 AC 77 ms
75,684 KB
testcase_34 AC 88 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P, N = map(str, input().split())
def f(x):
    if x==0 or x==6 or x==9:
        return 6
    elif x==1:
        return 2
    elif x==2 or x==3 or x==5:
        return 5
    elif x==4 or x==7:
        return 4
    elif x == 8:
        return 7
    elif x >= 10:
        return f(x//10) + f(x%10)
if N == '0':
    print(P)
    exit()
x = 0
N = int(N) - 1
if P[0] == '-':
    P = P[1:]
    x = 1
for p in P:
    x += f(int(p))
if N == 0:
    print(x)
    exit()
P = x
for i in range(N):
    P = f(P)
    if 4<=P<=6:
        print(P)
        exit()
else:
    print(P)
    exit()
0