結果

問題 No.1458 Segment Function
ユーザー rlangevinrlangevin
提出日時 2023-09-23 01:17:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 553 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 68,144 KB
最終ジャッジ日時 2024-07-16 01:53:30
合計ジャッジ時間 3,613 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,272 KB
testcase_01 AC 38 ms
52,568 KB
testcase_02 AC 38 ms
52,248 KB
testcase_03 AC 39 ms
53,152 KB
testcase_04 AC 39 ms
53,100 KB
testcase_05 AC 39 ms
52,676 KB
testcase_06 AC 39 ms
53,016 KB
testcase_07 AC 39 ms
53,756 KB
testcase_08 AC 48 ms
65,652 KB
testcase_09 AC 48 ms
66,000 KB
testcase_10 AC 49 ms
67,164 KB
testcase_11 AC 48 ms
66,956 KB
testcase_12 AC 48 ms
66,652 KB
testcase_13 AC 41 ms
54,528 KB
testcase_14 AC 41 ms
53,988 KB
testcase_15 AC 40 ms
53,904 KB
testcase_16 AC 41 ms
53,276 KB
testcase_17 AC 41 ms
54,664 KB
testcase_18 AC 50 ms
66,664 KB
testcase_19 AC 51 ms
68,144 KB
testcase_20 AC 50 ms
67,616 KB
testcase_21 AC 50 ms
67,048 KB
testcase_22 AC 51 ms
66,728 KB
testcase_23 AC 39 ms
52,532 KB
testcase_24 AC 40 ms
53,892 KB
testcase_25 AC 38 ms
52,584 KB
testcase_26 AC 49 ms
67,256 KB
testcase_27 AC 50 ms
66,812 KB
testcase_28 AC 39 ms
53,380 KB
testcase_29 AC 41 ms
53,840 KB
testcase_30 AC 40 ms
53,876 KB
testcase_31 AC 40 ms
54,232 KB
testcase_32 AC 49 ms
66,200 KB
testcase_33 AC 49 ms
66,084 KB
testcase_34 AC 48 ms
65,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L = [6, 2, 5, 5, 4, 5, 6, 4, 7, 6]
def f(X):
    v = 0
    for x in X:
        if x == "-":
            v += 1
        else:
            v += L[int(x)]
    return str(v)

P, N = input().split()
if len(N) >= 3:
    N = 100
else:
    N = int(N)

for _ in range(N):
    P = f(P)
    
print(P)
0