結果

問題 No.752 mod数列
ユーザー 37zigen37zigen
提出日時 2018-11-09 22:10:45
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,290 bytes
コンパイル時間 1,989 ms
コンパイル使用メモリ 77,588 KB
実行使用メモリ 283,576 KB
最終ジャッジ日時 2024-11-21 06:00:54
合計ジャッジ時間 44,365 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 266 ms
141,220 KB
testcase_01 AC 266 ms
271,688 KB
testcase_02 AC 264 ms
142,148 KB
testcase_03 AC 265 ms
271,056 KB
testcase_04 AC 266 ms
141,904 KB
testcase_05 AC 266 ms
282,964 KB
testcase_06 AC 269 ms
142,024 KB
testcase_07 AC 266 ms
283,332 KB
testcase_08 AC 264 ms
141,976 KB
testcase_09 AC 265 ms
283,044 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 TLE -
testcase_13 RE -
testcase_14 TLE -
testcase_15 AC 1,462 ms
148,512 KB
testcase_16 AC 1,436 ms
148,376 KB
testcase_17 AC 1,764 ms
148,160 KB
testcase_18 AC 1,440 ms
148,544 KB
testcase_19 RE -
testcase_20 AC 1,503 ms
148,012 KB
testcase_21 AC 1,433 ms
148,128 KB
testcase_22 AC 1,456 ms
147,988 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 RE -
testcase_31 AC 253 ms
134,344 KB
testcase_32 AC 266 ms
135,448 KB
testcase_33 AC 266 ms
283,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long P = sc.nextLong();
		int Q = sc.nextInt();
		int[] L = new int[Q];
		int[] R = new int[Q];
		for (int i = 0; i < Q; ++i) {
			L[i] = sc.nextInt();
			R[i] = sc.nextInt();
		}
		long[] sum = new long[10000000];
		for (int i = 1; i < sum.length; ++i) {
			sum[i] = P % i + (i > 0 ? sum[i - 1] : 0);
		}
		for (int i = 0; i < Q; ++i) {
			int l = L[i];
			int r = R[i];
			long ans = 0;
			if (l < sum.length) {
				ans = sum[Math.min(sum.length - 1, r)] - sum[l - 1];
				l = Math.min(sum.length, r + 1);
			}
			if (l > r) {
				System.out.println(ans);
			} else {
				for (long cur = l; cur <= r;) {
					long q = P / cur;
					long res = P % cur;
					long x = Math.min((long) ((P - cur * q - 1) / q), r - cur);
					// l,l+1,..,l+xが商が同じ
					ans = res * (x + 1) - q * x * (x + 1) / 2 + ans;
					cur = cur + x + 1;
				}
				System.out.println(ans);
			}
		}
	}

	static long gcd(long a, long b) {
		if (a > b)
			return gcd(b, a);
		if (a == 0)
			return b;
		return gcd(b % a, a);
	}

	public static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0