結果

問題 No.2961 Shiny Monster Master
ユーザー 遭難者遭難者
提出日時 2024-11-16 16:10:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 1,777 ms
コード長 334 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 97,336 KB
最終ジャッジ日時 2024-11-16 16:11:58
合計ジャッジ時間 8,533 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
65,948 KB
testcase_01 AC 72 ms
73,848 KB
testcase_02 AC 71 ms
73,960 KB
testcase_03 AC 71 ms
73,596 KB
testcase_04 AC 48 ms
62,340 KB
testcase_05 AC 58 ms
76,920 KB
testcase_06 AC 52 ms
70,884 KB
testcase_07 AC 66 ms
79,436 KB
testcase_08 AC 97 ms
91,692 KB
testcase_09 AC 49 ms
64,708 KB
testcase_10 AC 97 ms
93,364 KB
testcase_11 AC 101 ms
88,240 KB
testcase_12 AC 98 ms
85,860 KB
testcase_13 AC 64 ms
68,044 KB
testcase_14 AC 103 ms
92,040 KB
testcase_15 AC 98 ms
89,244 KB
testcase_16 AC 56 ms
72,748 KB
testcase_17 AC 92 ms
87,404 KB
testcase_18 AC 97 ms
90,428 KB
testcase_19 AC 87 ms
89,584 KB
testcase_20 AC 105 ms
91,868 KB
testcase_21 AC 82 ms
87,824 KB
testcase_22 AC 49 ms
65,176 KB
testcase_23 AC 76 ms
84,844 KB
testcase_24 AC 92 ms
81,680 KB
testcase_25 AC 92 ms
88,484 KB
testcase_26 AC 96 ms
92,108 KB
testcase_27 AC 60 ms
76,804 KB
testcase_28 AC 57 ms
75,048 KB
testcase_29 AC 56 ms
70,304 KB
testcase_30 AC 63 ms
85,672 KB
testcase_31 AC 92 ms
88,108 KB
testcase_32 AC 74 ms
86,112 KB
testcase_33 AC 75 ms
92,060 KB
testcase_34 AC 96 ms
85,904 KB
testcase_35 AC 99 ms
92,932 KB
testcase_36 AC 112 ms
82,160 KB
testcase_37 AC 100 ms
91,108 KB
testcase_38 AC 90 ms
82,144 KB
testcase_39 AC 94 ms
86,764 KB
testcase_40 AC 89 ms
83,940 KB
testcase_41 AC 82 ms
80,068 KB
testcase_42 AC 99 ms
91,608 KB
testcase_43 AC 86 ms
78,856 KB
testcase_44 AC 108 ms
92,188 KB
testcase_45 AC 36 ms
52,320 KB
testcase_46 AC 87 ms
82,000 KB
testcase_47 AC 73 ms
85,268 KB
testcase_48 AC 60 ms
72,836 KB
testcase_49 AC 94 ms
80,044 KB
testcase_50 AC 90 ms
88,644 KB
testcase_51 AC 97 ms
83,760 KB
testcase_52 AC 68 ms
75,728 KB
testcase_53 AC 60 ms
72,648 KB
testcase_54 AC 54 ms
66,888 KB
testcase_55 AC 74 ms
84,756 KB
testcase_56 AC 76 ms
85,444 KB
testcase_57 AC 56 ms
75,492 KB
testcase_58 AC 85 ms
83,600 KB
testcase_59 AC 63 ms
82,884 KB
testcase_60 AC 66 ms
78,404 KB
testcase_61 AC 70 ms
79,436 KB
testcase_62 AC 104 ms
95,488 KB
testcase_63 AC 100 ms
88,532 KB
testcase_64 AC 52 ms
74,452 KB
testcase_65 AC 81 ms
91,296 KB
testcase_66 AC 49 ms
61,716 KB
testcase_67 AC 72 ms
73,880 KB
testcase_68 AC 55 ms
62,548 KB
testcase_69 AC 81 ms
73,184 KB
testcase_70 AC 57 ms
66,128 KB
testcase_71 AC 47 ms
61,316 KB
testcase_72 AC 71 ms
73,320 KB
testcase_73 AC 71 ms
73,788 KB
testcase_74 AC 105 ms
97,336 KB
testcase_75 AC 106 ms
97,060 KB
testcase_76 AC 107 ms
97,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m, n = map(int, input().split())
c = [0] * m
for i in list(map(int, input().split())):
    c[i] += 1
for i in range(1, m):
    c[i] += c[i - 1]
for _ in range(int(input())):
    l, r = map(int, input().split())
    l -= 1
    l1, l2 = l % m, l // m
    r1, r2 = r % m, r // m
    ans = c[-1] * (r2 - l2) + c[r1] - c[l1]
    print(ans)
0