結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,804 KB
testcase_01 AC 37 ms
51,900 KB
testcase_02 AC 38 ms
52,008 KB
testcase_03 AC 51 ms
71,568 KB
testcase_04 AC 38 ms
53,208 KB
testcase_05 AC 39 ms
52,812 KB
testcase_06 AC 50 ms
71,408 KB
testcase_07 AC 38 ms
52,016 KB
testcase_08 AC 53 ms
71,976 KB
testcase_09 AC 53 ms
72,056 KB
testcase_10 AC 53 ms
72,060 KB
testcase_11 AC 52 ms
71,856 KB
testcase_12 AC 52 ms
73,044 KB
testcase_13 AC 52 ms
72,928 KB
testcase_14 AC 52 ms
73,068 KB
testcase_15 AC 52 ms
72,672 KB
testcase_16 AC 53 ms
72,248 KB
testcase_17 AC 53 ms
73,208 KB
testcase_18 AC 67 ms
76,548 KB
testcase_19 AC 69 ms
76,428 KB
testcase_20 AC 68 ms
77,008 KB
testcase_21 AC 69 ms
76,536 KB
testcase_22 AC 69 ms
76,676 KB
testcase_23 AC 37 ms
53,424 KB
testcase_24 AC 40 ms
53,712 KB
testcase_25 AC 37 ms
52,124 KB
testcase_26 AC 68 ms
76,896 KB
testcase_27 AC 68 ms
76,664 KB
testcase_28 AC 38 ms
52,396 KB
testcase_29 AC 39 ms
53,896 KB
testcase_30 AC 38 ms
53,452 KB
testcase_31 AC 52 ms
72,476 KB
testcase_32 AC 52 ms
72,480 KB
testcase_33 AC 52 ms
72,224 KB
testcase_34 AC 52 ms
73,308 KB
権限があれば一括ダウンロードができます

ソースコード

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