結果
問題 | No.752 mod数列 |
ユーザー | htensai |
提出日時 | 2019-12-11 12:34:16 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,088 bytes |
コンパイル時間 | 2,071 ms |
コンパイル使用メモリ | 77,472 KB |
実行使用メモリ | 65,292 KB |
最終ジャッジ日時 | 2024-06-24 07:39:14 |
合計ジャッジ時間 | 8,326 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
57,392 KB |
testcase_01 | AC | 52 ms
50,376 KB |
testcase_02 | AC | 54 ms
50,276 KB |
testcase_03 | AC | 53 ms
50,080 KB |
testcase_04 | AC | 53 ms
50,288 KB |
testcase_05 | AC | 53 ms
50,288 KB |
testcase_06 | AC | 52 ms
49,964 KB |
testcase_07 | AC | 52 ms
50,180 KB |
testcase_08 | AC | 53 ms
50,232 KB |
testcase_09 | AC | 52 ms
50,104 KB |
testcase_10 | AC | 92 ms
51,548 KB |
testcase_11 | AC | 87 ms
51,140 KB |
testcase_12 | AC | 89 ms
51,604 KB |
testcase_13 | AC | 87 ms
51,720 KB |
testcase_14 | AC | 99 ms
51,628 KB |
testcase_15 | AC | 838 ms
64,272 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 | -- | - |
ソースコード
import java.util.*; import java.io.*; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] first = br.readLine().split(" ", 2); int p = Integer.parseInt(first[0]); int q = Integer.parseInt(first[1]); StringBuilder sb = new StringBuilder(); for (int i = 0; i < q; i++) { String[] line = br.readLine().split(" ", 2); int left = Integer.parseInt(line[0]); int right = Integer.parseInt(line[1]); 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); } }