結果

問題 No.1458 Segment Function
ユーザー convexineqconvexineq
提出日時 2021-04-01 11:16:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 77,008 KB
最終ジャッジ日時 2024-10-12 13:37:52
合計ジャッジ時間 3,033 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

p,n = input().split()
n = 10**4 if len(n) >= 4 else int(n)
a = dict(zip("0123456789-",map(int,"62554564761")))
for _ in range(n):
    p = str(sum(a[i] for i in p))
print(p)
0