結果

問題 No.2455 Numbers Dictionary
ユーザー sotanishysotanishy
提出日時 2023-09-01 22:21:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 810 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 79,232 KB
最終ジャッジ日時 2024-06-11 04:13:47
合計ジャッジ時間 7,687 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,600 KB
testcase_01 AC 34 ms
51,456 KB
testcase_02 AC 147 ms
77,696 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 158 ms
76,800 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 290 ms
77,568 KB
testcase_11 AC 336 ms
77,568 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 298 ms
77,568 KB
testcase_16 WA -
testcase_17 AC 461 ms
77,568 KB
testcase_18 AC 130 ms
77,056 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

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 + 1
    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