結果

問題 No.2592 おでぶなおばけさん 2
ユーザー 👑 p-adicp-adic
提出日時 2023-12-20 21:48:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 314 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 91,356 KB
最終ジャッジ日時 2024-09-27 10:03:31
合計ジャッジ時間 21,586 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,252 KB
testcase_01 AC 98 ms
81,440 KB
testcase_02 AC 169 ms
80,272 KB
testcase_03 AC 128 ms
77,252 KB
testcase_04 AC 144 ms
77,132 KB
testcase_05 AC 150 ms
90,972 KB
testcase_06 AC 1,300 ms
80,436 KB
testcase_07 AC 1,888 ms
80,256 KB
testcase_08 AC 1,542 ms
84,148 KB
testcase_09 AC 320 ms
77,624 KB
testcase_10 AC 357 ms
77,164 KB
testcase_11 AC 1,530 ms
84,096 KB
testcase_12 AC 202 ms
76,968 KB
testcase_13 AC 303 ms
85,584 KB
testcase_14 AC 387 ms
85,412 KB
testcase_15 AC 313 ms
81,764 KB
testcase_16 AC 299 ms
85,124 KB
testcase_17 AC 305 ms
88,564 KB
testcase_18 AC 292 ms
82,092 KB
testcase_19 AC 287 ms
79,140 KB
testcase_20 TLE -
testcase_21 AC 1,587 ms
77,484 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#クエリごとにkが変わっても大丈夫!
#と見せかけてテストケースが強いとTLEする嘘解法
R=range
J=lambda:map(int,input().split())
N,Q,K=J()
A=list(J())
for q in R(Q):
	l,r=J()
	t,b=0,1
	for i in R(l-1,r):
		t+=A[i]
		if t%K:
			b=0
			break
		t//=K
	else:b=t==0
	print("YNeos"[b::2])
0