結果

問題 No.1458 Segment Function
ユーザー nasubi24nasubi24
提出日時 2021-03-31 21:43:58
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 686 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 75,392 KB
最終ジャッジ日時 2024-05-09 06:29:05
合計ジャッジ時間 3,965 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 57 ms
68,096 KB
testcase_03 AC 56 ms
67,692 KB
testcase_04 AC 57 ms
67,968 KB
testcase_05 AC 57 ms
67,840 KB
testcase_06 AC 58 ms
67,456 KB
testcase_07 AC 61 ms
67,712 KB
testcase_08 AC 47 ms
65,792 KB
testcase_09 AC 46 ms
66,048 KB
testcase_10 AC 51 ms
66,688 KB
testcase_11 AC 49 ms
66,176 KB
testcase_12 AC 46 ms
65,920 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 59 ms
68,224 KB
testcase_24 WA -
testcase_25 AC 37 ms
52,096 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 36 ms
52,096 KB
testcase_29 AC 38 ms
53,888 KB
testcase_30 WA -
testcase_31 RE -
testcase_32 AC 47 ms
66,560 KB
testcase_33 AC 46 ms
66,304 KB
testcase_34 AC 47 ms
65,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p,n=input().split()
ans=0
if p[0]=="-":
    ans+=1
    p=p[1:]
num=[6,2,5,5,4,5,6,4,7,6]
if n=="0":
    print(p)
else:
    memo=[]
    for i in range(10):
        for j in range(len(p)):
            ans+=num[int(p[j])]
        memo.append(ans)
        p=str(ans)
        ans=0
    if int(n)<=10:
        print(memo[int(n)-1])
    else:
        seen=[False]*(2*10**6)
        memo2=[]
        for i in range(2*10**6):
            for j in range(len(p)):
                ans+=num[int(p[j])]
            if seen[ans]==True:
                break
            memo2.append(ans)
            seen[ans]=True
            p=str(ans)
            ans=0
        print(memo2[(int(n)-10)%len(memo2)])
0