結果

問題 No.2961 Shiny Monster Master
ユーザー Iroha_3856Iroha_3856
提出日時 2024-11-16 15:39:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 1,777 ms
コード長 399 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 105,088 KB
最終ジャッジ日時 2024-11-16 15:39:42
合計ジャッジ時間 11,159 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
64,896 KB
testcase_01 AC 96 ms
76,160 KB
testcase_02 AC 84 ms
72,448 KB
testcase_03 AC 84 ms
72,832 KB
testcase_04 AC 56 ms
60,544 KB
testcase_05 AC 78 ms
79,360 KB
testcase_06 AC 83 ms
77,696 KB
testcase_07 AC 94 ms
84,224 KB
testcase_08 AC 139 ms
98,944 KB
testcase_09 AC 60 ms
65,664 KB
testcase_10 AC 133 ms
99,712 KB
testcase_11 AC 125 ms
94,080 KB
testcase_12 AC 132 ms
92,800 KB
testcase_13 AC 72 ms
67,584 KB
testcase_14 AC 138 ms
98,816 KB
testcase_15 AC 123 ms
92,800 KB
testcase_16 AC 81 ms
77,440 KB
testcase_17 AC 114 ms
88,960 KB
testcase_18 AC 126 ms
94,336 KB
testcase_19 AC 103 ms
93,440 KB
testcase_20 AC 132 ms
98,688 KB
testcase_21 AC 100 ms
93,568 KB
testcase_22 AC 60 ms
66,816 KB
testcase_23 AC 88 ms
86,656 KB
testcase_24 AC 112 ms
82,304 KB
testcase_25 AC 131 ms
94,720 KB
testcase_26 AC 133 ms
97,024 KB
testcase_27 AC 77 ms
79,872 KB
testcase_28 AC 73 ms
80,128 KB
testcase_29 AC 71 ms
74,112 KB
testcase_30 AC 93 ms
92,672 KB
testcase_31 AC 130 ms
93,352 KB
testcase_32 AC 107 ms
91,648 KB
testcase_33 AC 105 ms
98,048 KB
testcase_34 AC 124 ms
91,264 KB
testcase_35 AC 149 ms
98,944 KB
testcase_36 AC 132 ms
88,064 KB
testcase_37 AC 135 ms
94,336 KB
testcase_38 AC 134 ms
86,400 KB
testcase_39 AC 169 ms
93,312 KB
testcase_40 AC 127 ms
88,192 KB
testcase_41 AC 110 ms
82,816 KB
testcase_42 AC 130 ms
95,744 KB
testcase_43 AC 107 ms
80,768 KB
testcase_44 AC 130 ms
96,768 KB
testcase_45 AC 38 ms
51,712 KB
testcase_46 AC 108 ms
82,944 KB
testcase_47 AC 106 ms
92,800 KB
testcase_48 AC 88 ms
80,384 KB
testcase_49 AC 112 ms
83,328 KB
testcase_50 AC 107 ms
94,720 KB
testcase_51 AC 110 ms
85,336 KB
testcase_52 AC 85 ms
79,104 KB
testcase_53 AC 79 ms
77,056 KB
testcase_54 AC 66 ms
68,736 KB
testcase_55 AC 105 ms
92,800 KB
testcase_56 AC 94 ms
89,088 KB
testcase_57 AC 74 ms
78,592 KB
testcase_58 AC 122 ms
87,808 KB
testcase_59 AC 87 ms
88,064 KB
testcase_60 AC 82 ms
81,280 KB
testcase_61 AC 93 ms
83,072 KB
testcase_62 AC 145 ms
102,912 KB
testcase_63 AC 140 ms
95,872 KB
testcase_64 AC 71 ms
74,496 KB
testcase_65 AC 109 ms
96,384 KB
testcase_66 AC 55 ms
60,672 KB
testcase_67 AC 86 ms
73,088 KB
testcase_68 AC 69 ms
61,824 KB
testcase_69 AC 86 ms
72,960 KB
testcase_70 AC 67 ms
65,152 KB
testcase_71 AC 58 ms
60,544 KB
testcase_72 AC 85 ms
73,216 KB
testcase_73 AC 86 ms
72,960 KB
testcase_74 AC 145 ms
105,088 KB
testcase_75 AC 150 ms
105,088 KB
testcase_76 AC 151 ms
104,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R, N = map(int, input().split())
A = list(map(int, input().split()))
ex = [False for i in range(R)]
for a in A: ex[a] = True
S = [0 for i in range(R+1)]
for i in range(R):
    S[i] = S[i-1] + ex[i]
for _ in range(int(input())):
    l, r = map(int, input().split())
    lc, rc = l//R, r//R
    if lc == rc:
        print(S[r%R]-S[l%R-1])
    else:
        print(N - S[l%R-1] + S[r%R] + (rc-lc-1) * N)
0