結果

問題 No.1252 数字根D
ユーザー tentententen
提出日時 2021-03-15 16:25:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 675 bytes
コンパイル時間 2,002 ms
コンパイル使用メモリ 75,336 KB
実行使用メモリ 58,092 KB
最終ジャッジ日時 2024-11-07 03:50:03
合計ジャッジ時間 6,224 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,036 KB
testcase_01 AC 144 ms
54,000 KB
testcase_02 AC 162 ms
54,088 KB
testcase_03 AC 223 ms
56,636 KB
testcase_04 AC 254 ms
57,472 KB
testcase_05 AC 259 ms
58,092 KB
testcase_06 AC 247 ms
57,544 KB
testcase_07 AC 246 ms
57,180 KB
testcase_08 AC 249 ms
57,472 KB
testcase_09 AC 250 ms
57,408 KB
testcase_10 AC 252 ms
57,908 KB
testcase_11 AC 253 ms
57,532 KB
testcase_12 AC 253 ms
57,696 KB
testcase_13 AC 252 ms
57,708 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int t = sc.nextInt();
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < t; i++) {
		    int d = sc.nextInt();
		    int a = sc.nextInt();
		    int b = sc.nextInt();
		    long left = (long)(a - 1) / (d - 1) * d * (d - 1) / 2;
    		int leftMod = (a - 1) % (d - 1);
    		left += (long)leftMod * (leftMod + 1) / 2;
    		long right = (long)b / (d - 1) * d * (d - 1) / 2;
    		int rightMod = b % (d - 1);
    		right += (long)rightMod * (rightMod + 1) / 2;
    		sb.append(right - left).append("\n");
		}
		System.out.print(sb);
   }
}
0