結果

問題 No.2032 Let's Write Multiples!!
ユーザー とりゐとりゐ
提出日時 2022-07-20 12:55:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 982 ms / 3,000 ms
コード長 660 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 85,220 KB
最終ジャッジ日時 2024-07-02 13:21:13
合計ジャッジ時間 15,760 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,008 KB
testcase_01 AC 331 ms
79,588 KB
testcase_02 AC 438 ms
82,264 KB
testcase_03 AC 256 ms
78,884 KB
testcase_04 AC 703 ms
85,220 KB
testcase_05 AC 659 ms
80,392 KB
testcase_06 AC 982 ms
85,060 KB
testcase_07 AC 261 ms
77,280 KB
testcase_08 AC 676 ms
80,140 KB
testcase_09 AC 76 ms
76,208 KB
testcase_10 AC 701 ms
80,616 KB
testcase_11 AC 712 ms
80,812 KB
testcase_12 AC 731 ms
80,948 KB
testcase_13 AC 768 ms
81,088 KB
testcase_14 AC 630 ms
80,208 KB
testcase_15 AC 664 ms
84,352 KB
testcase_16 AC 689 ms
84,244 KB
testcase_17 AC 724 ms
84,584 KB
testcase_18 AC 641 ms
80,304 KB
testcase_19 AC 378 ms
79,680 KB
testcase_20 AC 139 ms
76,916 KB
testcase_21 AC 575 ms
84,268 KB
testcase_22 AC 509 ms
83,196 KB
testcase_23 AC 545 ms
83,712 KB
testcase_24 AC 410 ms
80,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def floor_sum(n,m,a,b):
    ans=0
    if a>=m:
        ans+=(n-1)*n*(a//m)//2
        a%=m
    if b>=m:
        ans+=n*(b//m)
        b%=m
    y_max=(a*n+b)//m
    x_max=(y_max*m-b)
    if y_max==0:
        return ans
    ans+=(n-(x_max+a-1)//a)*y_max
    ans+=floor_sum(y_max,a,m,(a-x_max%a)%a)
    return ans

from sys import stdin
input=lambda :stdin.readline()[:-1]

t=int(input())
for _ in range(t):
  L,R,K,C=map(int,input().split())
  L=(L+K-1)//K*K
  R=(R//K)*K
  if L>R:
    print(0)
    continue

  N=(R-L)//K+1
  ans=0
  for i in range(9):
    ans+=floor_sum(N,10**(i+1),K,L+10**i*(10-C))
    ans-=floor_sum(N,10**(i+1),K,L+10**i*(9-C))
  print(ans)
0