結果

問題 No.1953 8
ユーザー siro53siro53
提出日時 2022-05-21 00:46:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 1,374 bytes
コンパイル時間 511 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-09-20 10:51:05
合計ジャッジ時間 6,265 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
69,632 KB
testcase_01 AC 75 ms
74,112 KB
testcase_02 AC 92 ms
76,212 KB
testcase_03 AC 65 ms
69,504 KB
testcase_04 AC 65 ms
69,504 KB
testcase_05 AC 65 ms
69,760 KB
testcase_06 AC 65 ms
69,504 KB
testcase_07 AC 66 ms
69,632 KB
testcase_08 AC 69 ms
69,632 KB
testcase_09 AC 70 ms
70,016 KB
testcase_10 AC 65 ms
69,760 KB
testcase_11 AC 66 ms
70,144 KB
testcase_12 AC 77 ms
75,116 KB
testcase_13 AC 87 ms
76,416 KB
testcase_14 AC 90 ms
76,288 KB
testcase_15 AC 88 ms
76,540 KB
testcase_16 AC 92 ms
76,372 KB
testcase_17 AC 89 ms
76,288 KB
testcase_18 AC 87 ms
76,416 KB
testcase_19 AC 88 ms
76,544 KB
testcase_20 AC 91 ms
75,904 KB
testcase_21 AC 87 ms
76,032 KB
testcase_22 AC 87 ms
76,160 KB
testcase_23 AC 87 ms
76,476 KB
testcase_24 AC 89 ms
75,932 KB
testcase_25 AC 89 ms
76,232 KB
testcase_26 AC 89 ms
76,544 KB
testcase_27 AC 87 ms
76,288 KB
testcase_28 AC 91 ms
76,544 KB
testcase_29 AC 87 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K = int(input())

def check(N):
    a = [1, 0, 0, 0, 1, 0, 1, 0, 2, 1]
    sz = len(str(N))
    # dp_sub[上からi桁目まで見て][N未満かどうか][leadingzero中] = 通り数
    dp_sub = [[[0, 0], [0, 0]] for _ in range(sz + 1)]
    # dp[上からi桁目まで見て][N未満かどうか][leadingzero中] = ○のsum
    dp = [[[0, 0], [0, 0]] for _ in range(sz + 1)]
    dp_sub[0][0][1] = 1

    for i in range(sz):
        d = int(str(N)[i])
        for isless in range(2):
            for islz in range(2):
                for num in range(10):
                    if isless == 0 and num > d:
                        continue
                    isless2 = 1 if num < d else isless
                    islz2 = 0 if num != 0 else islz
                    dp_sub[i+1][isless2][islz2] += dp_sub[i][isless][islz]
                    val = 0
                    if islz2 == 0:
                        val += dp_sub[i][isless][islz] * a[num]
                    dp[i+1][isless2][islz2] += dp[i][isless][islz] + val
        # print(i, dp[i], dp_sub[i])
    # print(sz, dp[sz], dp_sub[sz])
    ret = 0
    for isless in range(2):
        ret += dp[sz][isless][0]
    return ret

# print(check(K))

ok, ng = 10**18 + 1, 0
while ok - ng > 1:
    mid = (ok + ng) // 2
    if check(mid) >= K:
        ok = mid
    else:
        ng = mid

print(ok if check(ok) == K else -1)
0