結果

問題 No.2455 Numbers Dictionary
ユーザー sotanishysotanishy
提出日時 2023-09-01 23:42:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 585 ms / 2,000 ms
コード長 863 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-06-11 05:56:14
合計ジャッジ時間 7,665 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,368 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 153 ms
76,928 KB
testcase_03 AC 204 ms
77,440 KB
testcase_04 AC 269 ms
77,696 KB
testcase_05 AC 162 ms
76,672 KB
testcase_06 AC 375 ms
78,080 KB
testcase_07 AC 585 ms
78,592 KB
testcase_08 AC 218 ms
77,568 KB
testcase_09 AC 360 ms
78,464 KB
testcase_10 AC 296 ms
77,568 KB
testcase_11 AC 358 ms
77,696 KB
testcase_12 AC 203 ms
76,928 KB
testcase_13 AC 382 ms
78,080 KB
testcase_14 AC 281 ms
77,568 KB
testcase_15 AC 319 ms
77,568 KB
testcase_16 AC 146 ms
76,928 KB
testcase_17 AC 478 ms
77,568 KB
testcase_18 AC 135 ms
77,696 KB
testcase_19 AC 155 ms
77,904 KB
testcase_20 AC 375 ms
77,696 KB
testcase_21 AC 383 ms
78,464 KB
testcase_22 AC 261 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline


def calc(digits, N):
    if digits < N[:len(digits)]:
        cnt = 0
        for d in range(len(N)-len(digits)+1):
            cnt += 10**d
        return cnt
    if digits > N[:len(digits)]:
        cnt = 0
        for d in range(len(N)-len(digits)):
            cnt += 10**d
        return cnt

    res = 0
    cnt = 1
    for d in range(len(digits), len(N)):
        res = res * 10 + N[d]
    cnt += res
    for d in range(len(N)-len(digits)):
        cnt += 10**d
    return cnt


T = int(input())
for _ in range(T):
    N, K = map(int, input().split())
    N = list(map(int, str(N)))
    K = list(map(int, str(K)))
    ans = 0

    for i, x in enumerate(K):
        for y in range(x):
            if i == 0 and y == 0:
                continue
            ans += calc(K[:i] + [y], N)
        ans += 1

    print(ans)
0