結果

問題 No.752 mod数列
ユーザー htensaihtensai
提出日時 2019-12-11 12:31:30
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 851 bytes
コンパイル時間 2,256 ms
コンパイル使用メモリ 74,192 KB
実行使用メモリ 76,336 KB
最終ジャッジ日時 2024-06-24 07:39:03
合計ジャッジ時間 11,235 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
60,140 KB
testcase_01 AC 131 ms
54,056 KB
testcase_02 AC 131 ms
53,584 KB
testcase_03 AC 130 ms
54,048 KB
testcase_04 AC 132 ms
54,108 KB
testcase_05 AC 115 ms
52,736 KB
testcase_06 AC 130 ms
54,020 KB
testcase_07 AC 130 ms
53,896 KB
testcase_08 AC 129 ms
54,116 KB
testcase_09 AC 128 ms
54,008 KB
testcase_10 AC 217 ms
56,532 KB
testcase_11 AC 207 ms
56,812 KB
testcase_12 AC 208 ms
56,400 KB
testcase_13 AC 207 ms
56,548 KB
testcase_14 AC 237 ms
56,132 KB
testcase_15 AC 1,194 ms
68,248 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int p = sc.nextInt();
        int q = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < q; i++) {
            int left = sc.nextInt();
            int right = sc.nextInt();
            long start = left;
            long total = (right - left + 1) * (long) p;
            while (start <= right) {
                long div = p / start;
                if (div == 0) {
                    break;
                }
                long end = Math.min(p / div, right);
                total -= (end - start + 1) * (end + start) / 2 * div;
                start = end + 1;
            }
            sb.append(total).append("\n");
        }
        System.out.print(sb);
    }
}
0