結果

問題 No.2032 Let's Write Multiples!!
ユーザー ShirotsumeShirotsume
提出日時 2022-07-15 02:46:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,847 ms / 3,000 ms
コード長 1,161 bytes
コンパイル時間 2,090 ms
コンパイル使用メモリ 77,640 KB
実行使用メモリ 60,568 KB
最終ジャッジ日時 2024-06-26 20:49:52
合計ジャッジ時間 39,049 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
39,968 KB
testcase_01 AC 1,216 ms
58,456 KB
testcase_02 AC 1,151 ms
57,292 KB
testcase_03 AC 1,070 ms
57,872 KB
testcase_04 AC 1,380 ms
59,172 KB
testcase_05 AC 1,716 ms
58,752 KB
testcase_06 AC 1,678 ms
60,056 KB
testcase_07 AC 1,191 ms
59,036 KB
testcase_08 AC 1,527 ms
57,836 KB
testcase_09 AC 1,652 ms
58,580 KB
testcase_10 AC 1,521 ms
58,944 KB
testcase_11 AC 1,558 ms
59,208 KB
testcase_12 AC 1,580 ms
58,608 KB
testcase_13 AC 1,611 ms
58,904 KB
testcase_14 AC 1,488 ms
59,096 KB
testcase_15 AC 1,335 ms
59,032 KB
testcase_16 AC 1,402 ms
59,108 KB
testcase_17 AC 1,366 ms
58,972 KB
testcase_18 AC 1,847 ms
58,900 KB
testcase_19 AC 1,377 ms
59,104 KB
testcase_20 AC 1,168 ms
58,664 KB
testcase_21 AC 1,216 ms
59,064 KB
testcase_22 AC 1,302 ms
58,536 KB
testcase_23 AC 1,317 ms
57,820 KB
testcase_24 AC 1,164 ms
60,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	public static void main(String[] args) {
	        Scanner sc = new Scanner(System.in);
	        int t = sc.nextInt();
	        for(int i = 0; i < t; i++){
                long l = sc.nextLong();
                long r = sc.nextLong();
                long k = sc.nextLong();
                long c = sc.nextLong();
                long ans = f(r, k, c) - f(l - 1, k, c);
                System.out.println(ans);
	        }
	    }
	public static long floorSum(long n, long m, long a, long b){
		  long ret = 0;
		  if(a >= m){
			  ret += (n - 1) * n * (a/m)/2;
			  a %= m;
		  }
		  if(b >= m){
			  ret += n * (b/m);
			  b %= m;
		  }
		  long ym = (a * n + b) / m;
		  long xm = (ym * m - b);
		  if(ym == 0) return ret;
		  ret += (n - (xm + a - 1)/a) * ym;
		  ret += floorSum(ym, a, m, (a - xm % a) % a);
		  return ret;
	  	}
	
	public static long f(long r, long k, long c){
		long n = r / k;
		long ans = 0;
		long d = 1;
		for(int i = 0; i < 9; i++){
			long x = c * d;
			long y = (c + 1) * d;
			d *= 10;
			ans += floorSum(n, d, k,  d + k - x) - floorSum(n, d, k,  d + k - y);
		}
		return ans;
	}


}
0