結果

問題 No.2592 おでぶなおばけさん 2
ユーザー 👑 p-adicp-adic
提出日時 2023-12-21 08:57:13
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 579 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 96,184 KB
最終ジャッジ日時 2024-09-27 10:50:54
合計ジャッジ時間 158,095 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,616 KB
testcase_01 AC 163 ms
81,544 KB
testcase_02 AC 463 ms
80,936 KB
testcase_03 AC 263 ms
77,596 KB
testcase_04 AC 368 ms
77,980 KB
testcase_05 AC 349 ms
91,752 KB
testcase_06 AC 686 ms
80,440 KB
testcase_07 AC 640 ms
80,400 KB
testcase_08 AC 651 ms
84,604 KB
testcase_09 AC 343 ms
78,952 KB
testcase_10 AC 518 ms
78,172 KB
testcase_11 AC 648 ms
84,252 KB
testcase_12 AC 209 ms
78,264 KB
testcase_13 AC 2,001 ms
86,528 KB
testcase_14 AC 1,950 ms
86,600 KB
testcase_15 AC 1,717 ms
82,292 KB
testcase_16 AC 2,013 ms
86,500 KB
testcase_17 AC 2,016 ms
89,388 KB
testcase_18 AC 1,850 ms
82,672 KB
testcase_19 AC 1,592 ms
80,748 KB
testcase_20 AC 780 ms
81,544 KB
testcase_21 AC 758 ms
79,124 KB
testcase_22 AC 779 ms
84,448 KB
testcase_23 AC 2,153 ms
91,324 KB
testcase_24 AC 2,073 ms
84,944 KB
testcase_25 AC 1,602 ms
81,440 KB
testcase_26 AC 1,574 ms
81,536 KB
testcase_27 AC 2,497 ms
92,780 KB
testcase_28 TLE -
testcase_29 AC 2,376 ms
92,912 KB
testcase_30 TLE -
testcase_31 AC 2,382 ms
92,716 KB
testcase_32 AC 2,386 ms
92,652 KB
testcase_33 AC 2,388 ms
92,636 KB
testcase_34 AC 2,184 ms
95,888 KB
testcase_35 AC 2,228 ms
95,760 KB
testcase_36 AC 2,185 ms
96,004 KB
testcase_37 AC 2,272 ms
95,780 KB
testcase_38 AC 2,218 ms
96,020 KB
testcase_39 AC 2,147 ms
95,736 KB
testcase_40 AC 2,293 ms
95,964 KB
testcase_41 AC 2,154 ms
95,736 KB
testcase_42 AC 2,227 ms
96,016 KB
testcase_43 AC 2,264 ms
95,836 KB
testcase_44 AC 2,247 ms
96,092 KB
testcase_45 AC 2,376 ms
95,940 KB
testcase_46 AC 2,275 ms
96,012 KB
testcase_47 AC 1,725 ms
91,652 KB
testcase_48 AC 1,706 ms
91,748 KB
testcase_49 AC 1,689 ms
91,584 KB
testcase_50 AC 1,704 ms
92,164 KB
testcase_51 AC 1,708 ms
91,872 KB
testcase_52 AC 2,267 ms
95,832 KB
testcase_53 AC 2,399 ms
95,752 KB
testcase_54 AC 2,204 ms
96,136 KB
testcase_55 AC 2,267 ms
96,184 KB
testcase_56 AC 2,282 ms
95,796 KB
testcase_57 AC 112 ms
91,880 KB
testcase_58 AC 2,422 ms
92,580 KB
testcase_59 AC 2,183 ms
92,572 KB
testcase_60 TLE -
testcase_61 AC 2,441 ms
92,564 KB
testcase_62 AC 2,473 ms
92,492 KB
testcase_63 AC 2,050 ms
93,828 KB
testcase_64 TLE -
testcase_65 TLE -
testcase_66 AC 2,448 ms
93,880 KB
testcase_67 AC 2,016 ms
92,876 KB
testcase_68 AC 2,126 ms
93,612 KB
testcase_69 AC 1,939 ms
93,020 KB
testcase_70 AC 2,329 ms
93,680 KB
testcase_71 AC 1,997 ms
93,232 KB
testcase_72 AC 2,208 ms
93,676 KB
testcase_73 AC 2,217 ms
93,636 KB
testcase_74 AC 38 ms
52,500 KB
testcase_75 AC 2,330 ms
96,024 KB
testcase_76 AC 2,177 ms
95,932 KB
testcase_77 AC 2,209 ms
95,832 KB
testcase_78 AC 2,204 ms
96,068 KB
testcase_79 AC 2,221 ms
95,932 KB
testcase_80 AC 2,236 ms
95,820 KB
testcase_81 AC 2,291 ms
96,112 KB
testcase_82 AC 2,252 ms
96,080 KB
testcase_83 AC 2,296 ms
96,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

B=12
R=range
J=lambda:map(int,input().split())
N,Q,K=J()
A=list(J())
while N%B:
	A+=[0]
	N+=1
N//=B
def Add(i,t,F):
	i+=1
	while i<=N:F[i],i=F[i]+t,i+(i&-i)
def InitialSum(r,F):
	a=0
	i=min(r+1,N)
	while i:a,i=a+F[i],i-(i&-i)
	return a
def IntervalSum(l,r,F):
	return InitialSum(r,F)-InitialSum(l-1,F)
bit=[[0]*(N+1)for i in R(B)]
for i in R(B):
	for j in R(N):Add(j,A[j*B+i],bit[i])
for q in R(Q):
	l,r=J()
	k=K
	l,t,p=l-1,0,1
	for i in R(B):
		x,y=l//B,(r-1)//B
		if l>x*B+i:x+=1
		if y*B+i>r-1:y-=1
		t,p=t+(0if x>y else IntervalSum(x,y,bit[i])*p),p*k
	print("YNeos"[t==0::2])
0