結果

問題 No.5012 Better Mo's Algorithm is Needed!! (Execute)
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-07-14 09:42:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 212 bytes
コンパイル時間 981 ms
コンパイル使用メモリ 86,500 KB
実行使用メモリ 96,816 KB
スコア 650,000,000,056,787,552
最終ジャッジ日時 2023-07-14 09:45:24
合計ジャッジ時間 154,839 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
71,300 KB
testcase_01 AC 303 ms
95,524 KB
testcase_02 AC 494 ms
96,400 KB
testcase_03 AC 497 ms
96,252 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 498 ms
96,236 KB
testcase_07 AC 499 ms
96,488 KB
testcase_08 TLE -
testcase_09 AC 493 ms
96,240 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 498 ms
96,248 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 499 ms
95,912 KB
testcase_17 AC 499 ms
96,072 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 497 ms
96,664 KB
testcase_22 AC 135 ms
78,564 KB
testcase_23 AC 144 ms
78,304 KB
testcase_24 AC 143 ms
78,336 KB
testcase_25 AC 171 ms
81,316 KB
testcase_26 AC 174 ms
81,000 KB
testcase_27 AC 173 ms
81,020 KB
testcase_28 AC 268 ms
85,444 KB
testcase_29 AC 284 ms
85,448 KB
testcase_30 AC 281 ms
85,748 KB
testcase_31 AC 491 ms
94,472 KB
testcase_32 AC 487 ms
94,252 KB
testcase_33 TLE -
testcase_34 AC 140 ms
79,488 KB
testcase_35 AC 138 ms
79,536 KB
testcase_36 AC 140 ms
79,628 KB
testcase_37 AC 175 ms
80,816 KB
testcase_38 AC 174 ms
81,204 KB
testcase_39 AC 178 ms
81,136 KB
testcase_40 AC 281 ms
85,860 KB
testcase_41 AC 280 ms
85,996 KB
testcase_42 AC 277 ms
85,844 KB
testcase_43 AC 484 ms
94,068 KB
testcase_44 AC 499 ms
94,036 KB
testcase_45 TLE -
testcase_46 AC 150 ms
84,248 KB
testcase_47 AC 152 ms
84,256 KB
testcase_48 AC 159 ms
84,428 KB
testcase_49 AC 183 ms
84,512 KB
testcase_50 AC 188 ms
84,392 KB
testcase_51 AC 183 ms
84,632 KB
testcase_52 AC 294 ms
86,692 KB
testcase_53 AC 291 ms
86,596 KB
testcase_54 AC 288 ms
86,788 KB
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 AC 166 ms
92,104 KB
testcase_59 AC 170 ms
91,988 KB
testcase_60 AC 163 ms
91,876 KB
testcase_61 AC 199 ms
91,836 KB
testcase_62 AC 194 ms
92,052 KB
testcase_63 AC 195 ms
91,992 KB
testcase_64 AC 294 ms
91,908 KB
testcase_65 AC 304 ms
91,744 KB
testcase_66 AC 288 ms
91,892 KB
testcase_67 AC 493 ms
96,476 KB
testcase_68 TLE -
testcase_69 TLE -
testcase_70 AC 489 ms
96,524 KB
testcase_71 TLE -
testcase_72 AC 497 ms
96,208 KB
testcase_73 TLE -
testcase_74 TLE -
testcase_75 TLE -
testcase_76 TLE -
testcase_77 AC 491 ms
96,420 KB
testcase_78 TLE -
testcase_79 AC 495 ms
96,616 KB
testcase_80 TLE -
testcase_81 TLE -
testcase_82 TLE -
testcase_83 AC 499 ms
96,660 KB
testcase_84 TLE -
testcase_85 AC 491 ms
96,536 KB
testcase_86 AC 499 ms
96,516 KB
testcase_87 AC 495 ms
96,044 KB
testcase_88 TLE -
testcase_89 TLE -
testcase_90 TLE -
testcase_91 AC 499 ms
96,580 KB
testcase_92 AC 498 ms
96,484 KB
testcase_93 AC 492 ms
96,560 KB
testcase_94 AC 495 ms
96,276 KB
testcase_95 TLE -
testcase_96 AC 493 ms
96,552 KB
testcase_97 TLE -
testcase_98 TLE -
testcase_99 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())
A=list(map(int,input().split()))
bac=N//(pow(Q,1/2))
query=[]
for i in range(Q):
	l,r=map(int,input().split())
	query.append([l//bac,r,i])
query.sort()
print(*[i[2]+1 for i in query])
0