結果

問題 No.1458 Segment Function
ユーザー lloyzlloyz
提出日時 2022-09-19 00:17:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 677 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 23,716 KB
最終ジャッジ日時 2024-06-01 15:52:37
合計ジャッジ時間 3,831 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 109 ms
12,832 KB
testcase_09 AC 108 ms
12,832 KB
testcase_10 AC 108 ms
12,708 KB
testcase_11 AC 109 ms
12,704 KB
testcase_12 AC 108 ms
12,832 KB
testcase_13 AC 31 ms
11,136 KB
testcase_14 AC 30 ms
11,064 KB
testcase_15 AC 31 ms
11,136 KB
testcase_16 AC 32 ms
11,044 KB
testcase_17 AC 32 ms
11,136 KB
testcase_18 AC 108 ms
13,468 KB
testcase_19 AC 112 ms
13,468 KB
testcase_20 AC 109 ms
13,464 KB
testcase_21 AC 111 ms
13,592 KB
testcase_22 AC 109 ms
13,596 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 WA -
testcase_25 AC 30 ms
10,752 KB
testcase_26 AC 102 ms
13,568 KB
testcase_27 AC 102 ms
13,592 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 124 ms
23,716 KB
testcase_30 WA -
testcase_31 AC 31 ms
11,136 KB
testcase_32 AC 109 ms
12,708 KB
testcase_33 AC 109 ms
12,836 KB
testcase_34 AC 109 ms
12,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p, n = input().split()
add = 0
if p[0] == '-':
    add += 1
    p = p[1:]
P = [int(i) for i in p]
m = len(P)

def change_digit(P):
    for i in range(len(P)):
        if P[i] == 1:
            P[i] = 2
        elif P[i] == 2 or P[i] == 3:
            P[i] = 5
        elif P[i] == 0 or P[i] == 9:
            P[i] = 6
        elif P[i] == 8:
            P[i] = 7
        elif P[i] == 7:
            P[i] = 4
    return P

cnt = 0
while n != str(cnt):
    cnt += 1
    P = change_digit(P)
    sumP = str(sum(P) + add)
    if add == 1:
        add = 0
    P = [int(i) for i in sumP]
    if len(P) == 1:
        if P[0] in (4, 5, 6):
            break
print(''.join(map(str, P)))
0