結果

問題 No.1458 Segment Function
ユーザー 👑 rin204rin204
提出日時 2023-04-21 23:23:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 81,832 KB
実行使用メモリ 79,656 KB
最終ジャッジ日時 2024-11-06 16:46:11
合計ジャッジ時間 5,746 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 186 ms
78,432 KB
testcase_09 AC 187 ms
78,592 KB
testcase_10 AC 184 ms
78,476 KB
testcase_11 AC 185 ms
78,368 KB
testcase_12 AC 184 ms
78,572 KB
testcase_13 AC 79 ms
71,364 KB
testcase_14 AC 80 ms
71,700 KB
testcase_15 AC 80 ms
71,520 KB
testcase_16 AC 80 ms
71,496 KB
testcase_17 AC 80 ms
71,492 KB
testcase_18 AC 215 ms
79,656 KB
testcase_19 AC 217 ms
79,172 KB
testcase_20 AC 215 ms
79,188 KB
testcase_21 AC 216 ms
79,360 KB
testcase_22 AC 215 ms
79,368 KB
testcase_23 AC 38 ms
52,736 KB
testcase_24 AC 175 ms
74,112 KB
testcase_25 AC 38 ms
51,840 KB
testcase_26 AC 131 ms
77,864 KB
testcase_27 AC 130 ms
78,200 KB
testcase_28 AC 38 ms
51,840 KB
testcase_29 AC 104 ms
72,812 KB
testcase_30 AC 105 ms
73,168 KB
testcase_31 AC 65 ms
72,048 KB
testcase_32 AC 183 ms
78,340 KB
testcase_33 AC 183 ms
78,268 KB
testcase_34 AC 183 ms
78,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


sys.set_int_max_str_digits(10 ** 9)

p, n = map(int, input().split())

def f(S):
    if S == "-":
        return 1
    else:
        return [6, 2, 5, 5, 4, 5, 6, 4, 7, 6][int(S)]

for _ in range(n):
    nex = sum(map(f, str(p)))
    if nex == p:
        break
    p = nex
print(p)
0