結果

問題 No.2455 Numbers Dictionary
ユーザー ゼットゼット
提出日時 2023-09-01 23:04:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,331 ms / 2,000 ms
コード長 1,210 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 79,456 KB
最終ジャッジ日時 2024-06-11 05:10:13
合計ジャッジ時間 22,168 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
64,512 KB
testcase_01 AC 34 ms
52,252 KB
testcase_02 AC 912 ms
78,040 KB
testcase_03 AC 1,039 ms
78,444 KB
testcase_04 AC 1,055 ms
78,024 KB
testcase_05 AC 1,011 ms
78,004 KB
testcase_06 AC 1,202 ms
78,824 KB
testcase_07 AC 1,196 ms
79,296 KB
testcase_08 AC 493 ms
78,048 KB
testcase_09 AC 1,172 ms
79,168 KB
testcase_10 AC 1,331 ms
78,804 KB
testcase_11 AC 1,303 ms
78,660 KB
testcase_12 AC 765 ms
78,724 KB
testcase_13 AC 1,242 ms
79,428 KB
testcase_14 AC 1,069 ms
79,248 KB
testcase_15 AC 1,216 ms
78,484 KB
testcase_16 AC 418 ms
78,160 KB
testcase_17 AC 1,170 ms
78,912 KB
testcase_18 AC 197 ms
77,396 KB
testcase_19 AC 246 ms
78,180 KB
testcase_20 AC 1,264 ms
79,456 KB
testcase_21 AC 1,248 ms
78,848 KB
testcase_22 AC 1,134 ms
78,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q=int(input())
for _ in range(Q):
  S,T=input().split()
  N=len(S)
  M=len(T)
  result=0
  u=[[0]*2 for i in range(N+1)]
  w=''
  for i in range(N):
    u2=[[0]*2 for i in range(N+1)]
    for j in range(1,N):
      for x in range(10):  
        if j>=M:
          u2[j+1][0]+=u[j][0]  
        else:
          y=int(T[j])  
          if x<y:
            u2[j+1][0]+=u[j][0]+u[j][1]
          elif x==y:
            u2[j+1][0]+=u[j][0]  
            u2[j+1][1]+=u[j][1]
          else:
            u2[j+1][0]+=u[j][0]
    y=int(S[i])
    if i>0:
      for x in range(1,10):
        if x<int(T[0]):
          u2[1][0]+=1
        elif x==int(T[0]):
          u2[1][1]+=1
      for x in range(y):
        s=w+str(x)
        if i>=M:  
          t=T
        else:
          t=T[:i+1]
        if s==t:
          u2[i+1][1]+=1  
        else:
          L=[s,t]
          L.sort()
          if s==L[0]:
            u2[i+1][0]+=1
    else:
      for x in range(1,y):
        if x<int(T[0]):
          u2[1][0]+=1
        elif x==int(T[0]):
          u2[1][1]+=1
    w+=S[i]
    u=u2.copy()
  for i in range(1,N+1):
    result+=u[i][0]+u[i][1]
  L=[S,T]
  L.sort()
  if S==L[0]:
    result+=1
  print(result)
  
        
0