結果

問題 No.2961 Shiny Monster Master
ユーザー rlangevinrlangevin
提出日時 2024-11-22 12:25:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 1,777 ms
コード長 431 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 121,228 KB
最終ジャッジ日時 2024-11-22 12:25:48
合計ジャッジ時間 11,261 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
65,024 KB
testcase_01 AC 96 ms
73,728 KB
testcase_02 AC 104 ms
73,088 KB
testcase_03 AC 92 ms
73,472 KB
testcase_04 AC 60 ms
61,056 KB
testcase_05 AC 86 ms
87,424 KB
testcase_06 AC 88 ms
91,264 KB
testcase_07 AC 100 ms
94,208 KB
testcase_08 AC 145 ms
113,408 KB
testcase_09 AC 67 ms
69,760 KB
testcase_10 AC 131 ms
114,132 KB
testcase_11 AC 136 ms
106,472 KB
testcase_12 AC 135 ms
106,496 KB
testcase_13 AC 77 ms
69,120 KB
testcase_14 AC 143 ms
113,280 KB
testcase_15 AC 131 ms
100,480 KB
testcase_16 AC 91 ms
89,088 KB
testcase_17 AC 120 ms
91,520 KB
testcase_18 AC 135 ms
103,368 KB
testcase_19 AC 113 ms
101,120 KB
testcase_20 AC 146 ms
112,256 KB
testcase_21 AC 120 ms
106,368 KB
testcase_22 AC 63 ms
69,888 KB
testcase_23 AC 97 ms
91,008 KB
testcase_24 AC 112 ms
83,592 KB
testcase_25 AC 139 ms
107,296 KB
testcase_26 AC 141 ms
109,056 KB
testcase_27 AC 85 ms
86,144 KB
testcase_28 AC 84 ms
89,600 KB
testcase_29 AC 80 ms
81,664 KB
testcase_30 AC 105 ms
107,648 KB
testcase_31 AC 133 ms
104,832 KB
testcase_32 AC 114 ms
103,456 KB
testcase_33 AC 117 ms
110,336 KB
testcase_34 AC 129 ms
102,612 KB
testcase_35 AC 145 ms
112,260 KB
testcase_36 AC 128 ms
99,840 KB
testcase_37 AC 134 ms
101,160 KB
testcase_38 AC 133 ms
96,768 KB
testcase_39 AC 136 ms
107,012 KB
testcase_40 AC 128 ms
96,128 KB
testcase_41 AC 117 ms
89,216 KB
testcase_42 AC 140 ms
106,368 KB
testcase_43 AC 113 ms
84,864 KB
testcase_44 AC 138 ms
105,728 KB
testcase_45 AC 42 ms
51,968 KB
testcase_46 AC 113 ms
86,108 KB
testcase_47 AC 119 ms
108,928 KB
testcase_48 AC 99 ms
94,848 KB
testcase_49 AC 124 ms
90,368 KB
testcase_50 AC 121 ms
107,700 KB
testcase_51 AC 117 ms
87,936 KB
testcase_52 AC 89 ms
87,168 KB
testcase_53 AC 83 ms
85,888 KB
testcase_54 AC 69 ms
71,168 KB
testcase_55 AC 123 ms
107,648 KB
testcase_56 AC 102 ms
97,024 KB
testcase_57 AC 80 ms
85,376 KB
testcase_58 AC 123 ms
97,792 KB
testcase_59 AC 102 ms
98,176 KB
testcase_60 AC 89 ms
85,888 KB
testcase_61 AC 103 ms
89,472 KB
testcase_62 AC 153 ms
118,212 KB
testcase_63 AC 141 ms
112,128 KB
testcase_64 AC 69 ms
77,568 KB
testcase_65 AC 119 ms
106,716 KB
testcase_66 AC 59 ms
61,440 KB
testcase_67 AC 92 ms
73,476 KB
testcase_68 AC 64 ms
62,720 KB
testcase_69 AC 93 ms
73,856 KB
testcase_70 AC 75 ms
65,408 KB
testcase_71 AC 60 ms
61,056 KB
testcase_72 AC 92 ms
73,344 KB
testcase_73 AC 91 ms
73,852 KB
testcase_74 AC 154 ms
121,228 KB
testcase_75 AC 159 ms
120,960 KB
testcase_76 AC 154 ms
120,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R, N = map(int, input().split())
A = list(map(int, input().split()))
D = [0] * 2 * R
for a in A:
    D[a] += 1
    D[a + R] += 1
    
Dc = [0] * (2 * R + 1)
for i in range(2 * R):
	Dc[i + 1] = Dc[i] + D[i]
 
Q = int(input())
for _ in range(Q):
    l, r = map(int, input().split())
    d = l // R
    l -= d * R
    r -= d * R
    diff = r - l
    ans = diff // R * N
    r -= diff // R * R
    ans += Dc[r+1] - Dc[l]
    print(ans)
0