結果

問題 No.1458 Segment Function
ユーザー ああいいああいい
提出日時 2022-05-31 11:27:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 383 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 75,080 KB
最終ジャッジ日時 2024-09-21 01:15:20
合計ジャッジ時間 3,822 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,532 KB
testcase_01 AC 38 ms
52,968 KB
testcase_02 AC 37 ms
52,764 KB
testcase_03 AC 38 ms
52,524 KB
testcase_04 AC 39 ms
53,068 KB
testcase_05 AC 38 ms
52,208 KB
testcase_06 AC 38 ms
52,468 KB
testcase_07 AC 38 ms
53,024 KB
testcase_08 AC 57 ms
71,884 KB
testcase_09 AC 51 ms
73,100 KB
testcase_10 AC 49 ms
72,488 KB
testcase_11 AC 49 ms
72,744 KB
testcase_12 AC 48 ms
72,988 KB
testcase_13 AC 41 ms
54,596 KB
testcase_14 AC 41 ms
54,612 KB
testcase_15 AC 40 ms
54,628 KB
testcase_16 AC 41 ms
55,064 KB
testcase_17 AC 40 ms
53,536 KB
testcase_18 AC 50 ms
74,520 KB
testcase_19 AC 50 ms
74,060 KB
testcase_20 AC 50 ms
73,824 KB
testcase_21 AC 50 ms
75,080 KB
testcase_22 AC 50 ms
73,528 KB
testcase_23 AC 38 ms
53,136 KB
testcase_24 WA -
testcase_25 AC 39 ms
52,920 KB
testcase_26 AC 51 ms
74,760 KB
testcase_27 AC 51 ms
73,648 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 40 ms
54,576 KB
testcase_32 AC 47 ms
71,920 KB
testcase_33 AC 48 ms
73,676 KB
testcase_34 AC 49 ms
73,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P,N = input().split()
import sys
if N == 0:
    print(P)
    exit()
    
d = [6,2,5,5,4,5,6,4,7,6]
ans = 0
if P[0] == "-":
    ans += 1
    P = P[1:]
for p in P:
    ans += d[int(p)]
if len(N) >= 4:
    N = 1000
else:
    N = int(N) - 1

def calc(S):
    tmp = 0
    while S:
        tmp += d[S % 10]
        S //= 10
    return tmp
for _ in range(N):
    ans = calc(ans)
print(ans)
0