You can use several words in query to find by all of them at the same time. In addition, if you are lucky search understands word forms and some synonyms. It supports search by title and author. Examples:

  • 305 — search for 305, most probably it will find blogs about the Round 305
  • andrew stankevich contests — search for words "andrew", "stankevich" and "contests" at the same time
  • user:mikemirzayanov title:testlib — search containing "testlib" in title by MikeMirzayanov
  • "vk cup" — use quotes to find phrase as is
  • title:educational — search in title

Results

1.
By businessmemq, history, 17 months ago, translation, In English
HSE Is CALL hello team and about traditions DONT WORRY)) xDD THX FOR HELPING with my big friend [user:0icq,2025-04-15] in all my studing in hse univercity (br0 you the best programmer xDD) Also i would like to say senks to [user:maxan,2025-04-15] for writting this post. It will be call(bad) without him. for the beginng i could to say that it was VERY EXECUTABBLE universe in world (not wrong) but i was kicked (by error) form him this summer and know this is call place becose its a very unfair action to kick me from moscow and now u will understand why:\ №1 in hse when you want to eat its a big problem becose there is a worst foodplace every i seen. business lunch has priced by 750 runbles (about 150$ in dollars price) ITS SO MANY BIG TROBLE from my cash account (I AM JUST STUDENT WTF???) ![ ](https://cs8.pikabu.ru/post_img/big/2018/12/19/10/154523614016269647.jpg) №2 when i know that hse will kick me i was trying to make a deal(no money) with my teachers to upping my mark about 0.0...
socks is badly, badly thands for reading, thanks questions in my VK profile: https://vk.com/mertvec18

Full text and comments »

  • Vote: I like it
  • 0
  • Vote: I do not like it

2.
By businessmemq, history, 4 years ago, translation, In English
overwiev to mipt summer olimic scool hello friends and dont worry))). thx [user:maxan,2022-07-22] respectful pupil in mipt informtics for helping post subscribtion and helping!!! ![ ](https://sun9-west.userapi.com/sun9-7/s/v1/if1/_hbxPy1YdKL2oFmnz9gDD0u1pe9ZTrUHxRon42T0_GooTbHZcAKBXNxfrIbdXn5xdcUeOY0f.jpg?size=607x1080&quality=96&type=album) for example i wil tell so good food in eating. it many energy and fool strong and all about this just day. for second its no warm water in house and i swimming in cold water, because thank [user:maxan,2022-07-22] for this technologies ![ ](https://sun9-east.userapi.com/sun9-57/s/v1/if2/ZWfbjh_Zolz_g8w8LPE0mTsjon0UBWro9HnyTTbtXUY6r-fqsSLHZOZwTai7eN33dVTdfbZ1pG3b_9g8iEKPE_JI.jpg?size=558x870&quality=95&type=album) about teachers: its so exciting to been on on lection by Filipp Rukhovich [user:DPR-pavlin,2022-07-22] and Andrey Chumachenkko (have not account cf dont worry))) R E S P E C T but its not so cool in this. when i seat in my cass room is lection some women sai...
say that i so good liked in mipt but whatever socks is badly thands for reading, thanks, In ending i will want say that i so good liked in mipt but whatever socks is badly

Full text and comments »

  • Vote: I like it
  • +33
  • Vote: I do not like it

3.
By businessmemq, history, 3 years ago, In English
HSE studies Hello team end DONT WORRY))))))))xDDD thx for helping in [user:0icq,2024-01-19] about a can going studi in HSE VERY BIG TY :D (recspect) and super thaks to [user:maxan,2024-01-19] becouse thats very nice pupil in mipt technologies university (call). Maxan is very respectful nice mipt student LOL For starting i can want to say that it was so hardy to me to being student HSE (cool). It was so compressive for my psycho heal because i was thought a big and my brain is so dead and i wanted to going go for a walk with my friends [user:islam_ahmed,2024-01-19] (nice to meet you) and [user:ivan_09090,2024-01-19] (BIG bRO) but I WAS SO STREIGHT AND NEED TO shoes. ok LETS GO to review HSE letsplay xDD its my friend his brain so smart [user:0icq,2024-01-19] ![ ](https://www.hse.ru/mirror/pubs/share/868367192) thats a his social network page in HSE internet https://www.hse.ru/staff/bigshishiga like and subscribe him plese is so close well then about HSE is so comfortable place in the ...
reading. AND DONT WORRY but whatever socks is badly))))))))) xDDDDDDD

Full text and comments »

  • Vote: I like it
  • -22
  • Vote: I do not like it

4.
By fcspartakm, history, 11 years ago, translation, In English
Codeforces Round #322 (Div.2) Editorial [581A — Vasya the Hipster](http://codeforces.me/problemset/problem/581/A) ------------------ The first number in answer (number of days which Vasya can dress fashionably) is $min(a, b)$ because every from this day he will dress one red sock and one blue sock. After this Vasya will have either only red socks or only blue socks or socks do not remain at all. Because of that the second number in answer is $max((a - min(a, b)) / 2, (b - min(a, b)) / 2)$. Asymptotic behavior of this solution — O(1). [581B — Luxurious Houses](http://codeforces.me/problemset/problem/581/B) ------------------ This problem can be solved in the following way. Let's iterate on given array from the right to the left and will store in variable $maxH$ the maximal height if house which we have already considered.Then the answer to house number $i$ is number $max(0, maxH + 1 - h_i)$, where $h_i$ number of floors in house number $i$. Asymptotic behavior of this solution — O($n$),...
)$ because every from this day he will dress one red sock and one blue sock. After this Vasya will have

Full text and comments »

  • Vote: I like it
  • +42
  • Vote: I do not like it

5.
By xiaowuc1, 3 years ago, In English
Problems that I authored so far Hi everyone! I have been inspired [by](https://codeforces.me/blog/entry/108940) [recent](https://codeforces.me/blog/entry/108595) [events](https://codeforces.me/blog/entry/113093) to write this blog post. This list is not comprehensive, but mostly because I do not keep detailed logs of problems I have written. There are a few things you will notice after reading through these problems. In no particular order: 1. Most of these problems are not "high-quality" — they would never see the light of day on a CF round for example. This is mostly due to my lack of skill in generating "high-quality" problems. You'll see that a lot of my problems are generated from observing real-life events and then constructing problems out of those scenarios. There are many ideas that have been proposed and thrown into the void because they were worse. I think there are a couple problems in this list that are actually good problems, but most of them I am not particularly proud of. 2. The diffic...

Full text and comments »

  • Vote: I like it
  • +56
  • Vote: I do not like it