結果
問題 | No.1252 数字根D |
ユーザー | tenten |
提出日時 | 2021-03-15 16:29:30 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 261 ms / 2,000 ms |
コード長 | 701 bytes |
コンパイル時間 | 2,273 ms |
コンパイル使用メモリ | 80,992 KB |
実行使用メモリ | 58,100 KB |
最終ジャッジ日時 | 2024-11-07 03:53:01 |
合計ジャッジ時間 | 6,502 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 141 ms
54,112 KB |
testcase_01 | AC | 148 ms
54,252 KB |
testcase_02 | AC | 177 ms
54,112 KB |
testcase_03 | AC | 227 ms
56,476 KB |
testcase_04 | AC | 257 ms
57,456 KB |
testcase_05 | AC | 256 ms
58,100 KB |
testcase_06 | AC | 261 ms
57,788 KB |
testcase_07 | AC | 254 ms
57,568 KB |
testcase_08 | AC | 253 ms
57,716 KB |
testcase_09 | AC | 259 ms
57,760 KB |
testcase_10 | AC | 258 ms
57,816 KB |
testcase_11 | AC | 252 ms
57,528 KB |
testcase_12 | AC | 244 ms
57,736 KB |
testcase_13 | AC | 252 ms
57,856 KB |
testcase_14 | AC | 144 ms
54,252 KB |
ソースコード
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)(Math.max(a - 1, 0)) / (d - 1) * d * (d - 1) / 2; int leftMod = (Math.max(a - 1, 0)) % (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); } }