We will hold CodeQUEEN 2026 -qual- (AtCoder Beginner Contest 462).
- Contest URL: https://atcoder.jp/contests/abc462
- Start Time: http://www.timeanddate.com/worldclock/fixedtime.html?iso=20260613T2100&p1=248
- Duration: 100 minutes
- Writer: sounansya, evima, math957963
- Tester: harurun4635, physics0523, sounansya
- Rated range: ~ 1999
- The point values: 100-200-300-400-450-500-575
We are looking forward to your participation!








The name is CodeQUEEN. So is it for females only?
No.
No.
Dengmuyang and I are both male, but we still registered for CodeQUEEN as usual.
I've made a quick web tool to help everyone check problem scores and estimated difficulties at a glance, which might be useful for your upsolving:
AtCoder Statistics
Any feedback is welcome. Hope it helps with your practice!
Noice
luck you
Thank you.
I want to win
AtCoder666
problem G is similar to 1799G. I solved it yesterday lol.
I found this G to be easier than one in other AtCoder rounds, can be considered north of usual ABC Problem F. Even the points are lower. Anyways, lucky you!!
Surprisingly, problem F was harder to me. I found it better.
F was great
I JUST WASTED AN HOUR BEING MISLED BY PROBLEM D!!! I FORGOT THAT TIME SHOULD ALSO BE INCLUDED IN WHAT I'M SOLVING!!!
My first time to solve E.Quite easy.
can anyone tell me what caused WA (C — Not Covered Points)
It should be
if (y <= mn)instead ofif (y < mn), because the boundary is excluded.(UPD) it's not a problem
I don't think that is the cause of WA. Assign the value to minY post sorting; or keep it as INF or N + 1 and sweep through all points after sorting.
Yeah, you're right, y is permutation, so comparison type doesn't matter.
Thank u so much for your help. Anyways I made these modifications and then got AC. I wonder how do those modifications make any difference?!
The only problem was that you set
mnbefore sorting, so it was just an ordinary y. It should be enough to swapint mn=vp[0].second;andsort(all(vp));lines in the first code.U r so right man. What kinda idiot I am!?
you can practice topic wise and difficulty wise sorting on this Atcoder Tags to get better in future.