結果

問題 No.1953 8
ユーザー terasaterasa
提出日時 2022-05-22 17:43:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 1,133 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 79,872 KB
最終ジャッジ日時 2024-09-20 12:45:20
合計ジャッジ時間 7,440 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
78,976 KB
testcase_01 AC 117 ms
78,848 KB
testcase_02 AC 120 ms
79,232 KB
testcase_03 AC 104 ms
78,720 KB
testcase_04 AC 106 ms
78,720 KB
testcase_05 AC 107 ms
78,720 KB
testcase_06 AC 115 ms
78,720 KB
testcase_07 AC 111 ms
78,720 KB
testcase_08 AC 119 ms
78,848 KB
testcase_09 AC 105 ms
78,592 KB
testcase_10 AC 107 ms
78,720 KB
testcase_11 AC 115 ms
78,848 KB
testcase_12 AC 118 ms
78,720 KB
testcase_13 AC 122 ms
78,720 KB
testcase_14 AC 133 ms
79,872 KB
testcase_15 AC 136 ms
79,360 KB
testcase_16 AC 137 ms
79,488 KB
testcase_17 AC 123 ms
79,360 KB
testcase_18 AC 120 ms
79,232 KB
testcase_19 AC 124 ms
78,976 KB
testcase_20 AC 125 ms
78,976 KB
testcase_21 AC 123 ms
78,720 KB
testcase_22 AC 129 ms
79,360 KB
testcase_23 AC 122 ms
78,848 KB
testcase_24 AC 126 ms
78,976 KB
testcase_25 AC 117 ms
78,720 KB
testcase_26 AC 117 ms
78,592 KB
testcase_27 AC 125 ms
79,104 KB
testcase_28 AC 123 ms
79,744 KB
testcase_29 AC 123 ms
79,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict, Counter
import string
import random

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


K = int(input())
circle = [1, 0, 0, 0, 1, 0, 1, 0, 2, 1]

l = -1
r = 10 ** 18
while r - l > 1:
    c = (l + r) // 2

    A = [int(c) for c in str(c)]
    dp = [[[0, 0] for _ in range(50)] for _ in range(len(A) + 1)]
    dp[0][0][0] = 1
    for i in range((len(A))):
        for j in range(40):
            for k in range(10):
                n = circle[k]
                dp[i + 1][j + n][1] += dp[i][j][1]

                if k < A[i]:
                    dp[i + 1][j + n][1] += dp[i][j][0]
                elif k == A[i]:
                    dp[i + 1][j + n][0] += dp[i][j][0]
    acc = 0
    for j in range(40):
        acc += j * sum(dp[len(A)][j])

    acc -= len(A)
    for i in range(1, len(A)):
        acc -= (len(A) - i) * (pow(10, i) - pow(10, i - 1))

    if acc == K:
        print(c)
        exit()
    elif acc > K:
        r = c
    else:
        l = c
print(-1)
0