結果

問題 No.2592 おでぶなおばけさん 2
ユーザー 👑 p-adicp-adic
提出日時 2023-12-21 00:54:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 665 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 94,520 KB
最終ジャッジ日時 2024-09-27 10:27:15
合計ジャッジ時間 155,565 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,236 KB
testcase_01 AC 167 ms
82,636 KB
testcase_02 AC 441 ms
81,764 KB
testcase_03 AC 268 ms
78,440 KB
testcase_04 AC 353 ms
78,492 KB
testcase_05 AC 348 ms
92,512 KB
testcase_06 AC 676 ms
81,236 KB
testcase_07 AC 613 ms
81,052 KB
testcase_08 AC 574 ms
85,032 KB
testcase_09 AC 365 ms
80,576 KB
testcase_10 AC 470 ms
78,756 KB
testcase_11 AC 697 ms
85,344 KB
testcase_12 AC 213 ms
79,220 KB
testcase_13 AC 1,876 ms
87,012 KB
testcase_14 AC 1,905 ms
87,200 KB
testcase_15 AC 1,736 ms
83,412 KB
testcase_16 AC 1,824 ms
87,176 KB
testcase_17 AC 2,003 ms
90,060 KB
testcase_18 AC 1,666 ms
83,380 KB
testcase_19 AC 1,679 ms
81,628 KB
testcase_20 AC 784 ms
81,952 KB
testcase_21 AC 764 ms
79,448 KB
testcase_22 AC 799 ms
85,352 KB
testcase_23 AC 2,007 ms
90,580 KB
testcase_24 AC 2,079 ms
85,380 KB
testcase_25 AC 1,640 ms
81,568 KB
testcase_26 AC 1,584 ms
81,996 KB
testcase_27 TLE -
testcase_28 AC 2,207 ms
92,300 KB
testcase_29 AC 2,471 ms
92,748 KB
testcase_30 AC 2,422 ms
92,680 KB
testcase_31 AC 2,194 ms
92,572 KB
testcase_32 AC 2,274 ms
92,572 KB
testcase_33 AC 2,205 ms
92,520 KB
testcase_34 AC 2,018 ms
93,548 KB
testcase_35 AC 1,958 ms
93,484 KB
testcase_36 AC 2,013 ms
93,632 KB
testcase_37 AC 2,409 ms
93,628 KB
testcase_38 AC 2,057 ms
93,420 KB
testcase_39 AC 2,253 ms
93,660 KB
testcase_40 AC 2,052 ms
93,552 KB
testcase_41 AC 2,092 ms
93,544 KB
testcase_42 AC 2,138 ms
93,468 KB
testcase_43 AC 2,098 ms
93,500 KB
testcase_44 AC 1,962 ms
93,704 KB
testcase_45 AC 2,091 ms
93,480 KB
testcase_46 AC 2,162 ms
93,928 KB
testcase_47 AC 1,840 ms
92,536 KB
testcase_48 AC 1,683 ms
92,564 KB
testcase_49 AC 1,850 ms
92,596 KB
testcase_50 AC 1,619 ms
92,648 KB
testcase_51 AC 1,565 ms
92,676 KB
testcase_52 AC 1,924 ms
93,528 KB
testcase_53 AC 2,007 ms
93,540 KB
testcase_54 AC 2,039 ms
93,532 KB
testcase_55 AC 2,222 ms
93,532 KB
testcase_56 AC 2,026 ms
93,688 KB
testcase_57 AC 116 ms
92,776 KB
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 2,282 ms
92,500 KB
testcase_61 AC 2,336 ms
92,368 KB
testcase_62 AC 2,281 ms
92,484 KB
testcase_63 WA -
testcase_64 AC 2,180 ms
92,328 KB
testcase_65 AC 2,262 ms
92,552 KB
testcase_66 AC 2,351 ms
92,576 KB
testcase_67 AC 1,948 ms
94,060 KB
testcase_68 WA -
testcase_69 AC 1,730 ms
93,872 KB
testcase_70 AC 2,287 ms
92,476 KB
testcase_71 AC 2,123 ms
92,696 KB
testcase_72 AC 2,367 ms
92,896 KB
testcase_73 AC 2,255 ms
92,712 KB
testcase_74 AC 43 ms
55,400 KB
testcase_75 AC 2,060 ms
93,528 KB
testcase_76 AC 2,300 ms
93,516 KB
testcase_77 AC 2,214 ms
93,636 KB
testcase_78 AC 2,277 ms
93,568 KB
testcase_79 AC 2,312 ms
93,480 KB
testcase_80 AC 2,313 ms
93,804 KB
testcase_81 AC 2,319 ms
93,544 KB
testcase_82 AC 2,125 ms
93,820 KB
testcase_83 AC 2,075 ms
93,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
import sys
B=random.randrange(10,13)
print(B,file=sys.stderr)
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,M=l-1,0,1,pow(k,B)-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%M==0::2])
0