Комментарии
На YouKn0wWhoCodeforces Round #735 (Div. 2), 5 лет назад
+29

Bengalis, assemble.... খেলা হবে । সবাই খেলবো ।

На VasuOberoiASKING ABOUT HACKS , 5 лет назад
0

The hacker can hack as many solutions as he/she can during the hacking phase. Once the hacking phase is complete, the system testing phase tests all solutions with all testcases before finalising the ranklist so that no faulty solution gets accepted.

На VasuOberoiASKING ABOUT HACKS , 5 лет назад
+3

Yes, that particular testcase gets added to the set of testcases. During system testing, all solutions are judged with all testcases (including the ones which successfully hacked a solution).

0

.

На NickolasApril Fools Day Contest 2021, 5 лет назад
-7

.

На CodeChef_adminCodeChef Break-The-Server, 5 лет назад
+23

Good luck CodeChef. I have doubts if this will go well. Even CF servers fail to handle load at certain times. I am not sure if CC really has a position to throw such a challenge.

Auto comment: topic has been updated by sarthakmanna (previous revision, new revision, compare).

Auto comment: topic has been updated by sarthakmanna (previous revision, new revision, compare).

Kindly send an email to help@codechef.com

We will announce if such a decision is taken.

Check now

It's still rated. The CodeChef team is looking into it.

The CodeChef dev team is looking into it.

The time limits have been verified by multiple testers. Try to come up with a more optimised solution.

Auto comment: topic has been updated by sarthakmanna (previous revision, new revision, compare).

Auto comment: topic has been updated by sarthakmanna (previous revision, new revision, compare).

Auto comment: topic has been updated by sarthakmanna (previous revision, new revision, compare).

Auto comment: topic has been updated by sarthakmanna (previous revision, new revision, compare).

Sure, they are ready.

Actually, since this contest is rated for both divisions, the problems have been verified and tested by the CodeChef admins. Therefore, you can expect a decent problemset in this contest. We'll be more than glad to hear the feedbacks from you after the contest.

We hope to see you in the ranklist. :)

Nice idea, we will think of renaming it from next year onwards.

Auto comment: topic has been updated by sarthakmanna (previous revision, new revision, compare).

На AnadiCodeforces Round #647 — Thanks, Algo Muse!, 6 лет назад
+20

An acknowledgement from the testers boosts the confidence of the participants, nothing else ;)

На AnadiCodeforces Round #647 — Thanks, Algo Muse!, 6 лет назад
+11

Following the trend, any review from the testers?

На vovuhCodeforces Round #629 (Div. 3), 6 лет назад
0

O(n) Pypy2 solution TLEs. Link: https://mirror.codeforces.com/contest/1328/submission/74427464

Same solution ACs when submitted in Python2. Can anyone explain why?

На vovuhCodeforces Round #611 (Div. 3) Editorial, 6 лет назад
0

For C, I tried a randomized approach. I tried to randomly assign values, not already present in the array, at the vacant positions until a valid solution is found. This approach has a success probability of about 36% (link).

Link: 67832203

However, I don't know why, but the same code received TLE when I submitted it in Pypy2, because of which I ended up spending more than 1 hour for this problem :(

Link to the TLEd Pypy submission: 67817623

Phew... I thought the newer version is not supported and so I have to reinstall the outdated one.

The predictor was working fine till yesterday. However, today I updated my Firefox web browser and it's not working anymore. I am running Firefox Quantum (64.0) in Ubuntu 18.04.

На mohammedehab2002Codeforces round #525 editorial, 7 лет назад
+8

Wow!!! Excellent solution.

Yes sir, I've got my answer. Thanks a lot.

На VladProgCodeforces Round #499 — announcement, 8 лет назад
0

Thanks a lot.

На VladProgCodeforces Round #499 — announcement, 8 лет назад
0

I think you are right. But I've never used the 'flush()' method. And that's I thought 'print' prints in real-time.

На VladProgCodeforces Round #499 — announcement, 8 лет назад
0
На VladProgCodeforces Round #499 — announcement, 8 лет назад
0

'print 1' prints '1'. I don't think we can flush this again.

На VladProgCodeforces Round #499 — announcement, 8 лет назад
0

In Problem D, I couldn't accept the input using Python 2.

My simple solution:

n, m = map(int, raw_input().split())
print 1
raw_input()

The verdict: Idleness limit exceeded.

Any help is appreciated.

In the just concluded contest, I couldn't accept the input in python 2.

Problem: https://mirror.codeforces.com/contest/1011/problem/D

My simple solution:

n, m = map(int, raw_input().split())
print 1
raw_input()

The verdict: Idleness limit exceeded.

Any help is appreciated.