結果

問題 No.1899 L1 Cafe
ユーザー ShirotsumeShirotsume
提出日時 2022-01-31 19:33:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,689 ms / 2,000 ms
コード長 958 bytes
コンパイル時間 6,482 ms
コンパイル使用メモリ 76,600 KB
実行使用メモリ 70,664 KB
最終ジャッジ日時 2024-11-28 04:07:31
合計ジャッジ時間 21,365 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
54,092 KB
testcase_01 AC 1,622 ms
69,684 KB
testcase_02 AC 1,550 ms
70,664 KB
testcase_03 AC 1,143 ms
69,296 KB
testcase_04 AC 1,349 ms
69,420 KB
testcase_05 AC 860 ms
63,532 KB
testcase_06 AC 1,597 ms
69,920 KB
testcase_07 AC 1,557 ms
69,856 KB
testcase_08 AC 1,544 ms
70,048 KB
testcase_09 AC 1,628 ms
69,900 KB
testcase_10 AC 1,689 ms
69,844 KB
testcase_11 AC 1,535 ms
69,512 KB
testcase_12 AC 1,569 ms
69,872 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 n = sc.nextLong();
		        long a = sc.nextLong();
		        long b = sc.nextLong();
		        long na = floorSum(n/a, 1, a, n - a * (n/a));
		        long nb = floorSum(n, b, 1, 0);
		        long nab = floorSum(n/a, b, a, n - a * (n/a));
		        long ans = na + nb - nab;
		        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;
	  }

}
0