結果

問題 No.2961 Shiny Monster Master
ユーザー ks2mks2m
提出日時 2024-11-16 15:38:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 645 ms / 1,777 ms
コード長 872 bytes
コンパイル時間 3,382 ms
コンパイル使用メモリ 76,988 KB
実行使用メモリ 52,512 KB
最終ジャッジ日時 2024-11-16 15:38:51
合計ジャッジ時間 38,142 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 204 ms
43,356 KB
testcase_01 AC 221 ms
45,556 KB
testcase_02 AC 207 ms
43,852 KB
testcase_03 AC 216 ms
44,780 KB
testcase_04 AC 192 ms
42,800 KB
testcase_05 AC 480 ms
48,180 KB
testcase_06 AC 312 ms
47,500 KB
testcase_07 AC 485 ms
48,020 KB
testcase_08 AC 571 ms
48,304 KB
testcase_09 AC 218 ms
45,744 KB
testcase_10 AC 608 ms
48,444 KB
testcase_11 AC 512 ms
48,280 KB
testcase_12 AC 445 ms
48,128 KB
testcase_13 AC 216 ms
44,416 KB
testcase_14 AC 500 ms
46,800 KB
testcase_15 AC 518 ms
48,128 KB
testcase_16 AC 334 ms
47,632 KB
testcase_17 AC 548 ms
48,356 KB
testcase_18 AC 609 ms
48,176 KB
testcase_19 AC 598 ms
48,232 KB
testcase_20 AC 537 ms
48,288 KB
testcase_21 AC 553 ms
48,276 KB
testcase_22 AC 292 ms
47,296 KB
testcase_23 AC 550 ms
48,176 KB
testcase_24 AC 441 ms
48,008 KB
testcase_25 AC 526 ms
48,452 KB
testcase_26 AC 590 ms
48,128 KB
testcase_27 AC 536 ms
48,296 KB
testcase_28 AC 463 ms
48,100 KB
testcase_29 AC 349 ms
48,092 KB
testcase_30 AC 557 ms
51,952 KB
testcase_31 AC 529 ms
48,212 KB
testcase_32 AC 540 ms
48,284 KB
testcase_33 AC 575 ms
48,428 KB
testcase_34 AC 429 ms
48,320 KB
testcase_35 AC 522 ms
48,580 KB
testcase_36 AC 320 ms
47,780 KB
testcase_37 AC 600 ms
48,736 KB
testcase_38 AC 380 ms
48,000 KB
testcase_39 AC 471 ms
48,144 KB
testcase_40 AC 454 ms
47,896 KB
testcase_41 AC 262 ms
47,792 KB
testcase_42 AC 600 ms
48,372 KB
testcase_43 AC 285 ms
47,776 KB
testcase_44 AC 600 ms
48,432 KB
testcase_45 AC 124 ms
41,092 KB
testcase_46 AC 462 ms
48,040 KB
testcase_47 AC 503 ms
51,988 KB
testcase_48 AC 264 ms
47,180 KB
testcase_49 AC 382 ms
48,020 KB
testcase_50 AC 498 ms
48,224 KB
testcase_51 AC 510 ms
48,048 KB
testcase_52 AC 451 ms
48,060 KB
testcase_53 AC 419 ms
48,056 KB
testcase_54 AC 316 ms
47,792 KB
testcase_55 AC 561 ms
48,484 KB
testcase_56 AC 570 ms
48,340 KB
testcase_57 AC 486 ms
48,312 KB
testcase_58 AC 413 ms
47,840 KB
testcase_59 AC 599 ms
48,220 KB
testcase_60 AC 468 ms
48,288 KB
testcase_61 AC 449 ms
48,140 KB
testcase_62 AC 609 ms
52,156 KB
testcase_63 AC 492 ms
52,040 KB
testcase_64 AC 395 ms
46,692 KB
testcase_65 AC 582 ms
48,404 KB
testcase_66 AC 191 ms
42,804 KB
testcase_67 AC 212 ms
44,736 KB
testcase_68 AC 193 ms
43,456 KB
testcase_69 AC 242 ms
44,260 KB
testcase_70 AC 202 ms
43,844 KB
testcase_71 AC 191 ms
43,172 KB
testcase_72 AC 209 ms
44,284 KB
testcase_73 AC 209 ms
44,304 KB
testcase_74 AC 580 ms
52,396 KB
testcase_75 AC 645 ms
52,512 KB
testcase_76 AC 644 ms
52,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Scanner;

public class Main {
	static int t, n;
	static int[] c;

	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		t = sc.nextInt();
		n = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		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() - 1;
			r[i] = sc.nextInt();
		}
		sc.close();

		c = new int[t];
		for (int i = 0; i < n; i++) {
			c[a[i]]++;
		}
		for (int i = 1; i < t; i++) {
			c[i] += c[i - 1];
		}

		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < q; i++) {
			int ans = f(r[i]) - f(l[i]);
			pw.println(ans);
		}
		pw.flush();
	}

	static int f(int x) {
		int ret = x / t * n;
		ret += c[x % t];
		return ret;
	}
}
0