結果

問題 No.2961 Shiny Monster Master
ユーザー ねしんねしん
提出日時 2024-06-18 21:49:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 214 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 192,916 KB
最終ジャッジ日時 2024-11-16 15:02:05
合計ジャッジ時間 124,274 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
73,056 KB
testcase_01 AC 68 ms
158,404 KB
testcase_02 AC 64 ms
74,120 KB
testcase_03 AC 66 ms
133,332 KB
testcase_04 AC 60 ms
72,444 KB
testcase_05 AC 91 ms
177,644 KB
testcase_06 AC 74 ms
79,572 KB
testcase_07 AC 105 ms
153,032 KB
testcase_08 AC 165 ms
100,708 KB
testcase_09 AC 87 ms
140,556 KB
testcase_10 AC 150 ms
104,580 KB
testcase_11 AC 135 ms
162,400 KB
testcase_12 AC 179 ms
87,008 KB
testcase_13 AC 127 ms
128,660 KB
testcase_14 AC 144 ms
99,700 KB
testcase_15 AC 177 ms
188,192 KB
testcase_16 AC 86 ms
79,236 KB
testcase_17 AC 161 ms
159,720 KB
testcase_18 AC 198 ms
104,340 KB
testcase_19 AC 157 ms
192,916 KB
testcase_20 AC 166 ms
101,800 KB
testcase_21 AC 122 ms
170,984 KB
testcase_22 AC 55 ms
73,672 KB
testcase_23 AC 124 ms
105,372 KB
testcase_24 AC 214 ms
91,380 KB
testcase_25 AC 156 ms
150,932 KB
testcase_26 AC 212 ms
104,292 KB
testcase_27 AC 94 ms
154,620 KB
testcase_28 AC 64 ms
85,516 KB
testcase_29 AC 82 ms
159,644 KB
testcase_30 AC 86 ms
97,444 KB
testcase_31 AC 135 ms
170,004 KB
testcase_32 AC 127 ms
96,736 KB
testcase_33 AC 143 ms
175,692 KB
testcase_34 AC 178 ms
89,136 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 AC 37 ms
124,024 KB
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 TLE -
testcase_73 TLE -
testcase_74 TLE -
testcase_75 TLE -
testcase_76 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

R,N=list(map(int,input().split()))
A=list(map(int,input().split()))
A=set(A)
Q=int(input())
for i in range(Q):
	l,r=list(map(int,input().split()))
	cnt=0
	for b in range(l,r+1):
		if b%R in A:
			cnt+=1
	print(cnt)
0