PE verdicts missing?
Moderator: Board moderators
PE verdicts missing?
Is there a PE verdict on the new judge? I don't think there is, I think it might explain a few WAs (but not why they are suddenly PE).
PE exists...
Yes, PE exists... I got many already...
However there are cases where I thought I should
get PE but got WA.. like extra blank lines... spaces,
etc. It feels inconsistent.
However there are cases where I thought I should
get PE but got WA.. like extra blank lines... spaces,
etc. It feels inconsistent.
Now I noticed one PE vs. WA problem. In 10436, in first submission I assumed, that I should write blank line after each test case. This submit was clarified as WA. In second submission, I assumed, that I should write blank line between consecutive test cases (= after each test case except the last). This submit was AC. I don't understand, why. First submit should had be PE. Or not? Btw. In problem description of 10436 is nothing about blank lines between test cases (explicit), but it causes WA. It's not wrong?
pe and don't wa
The code take PE in problem 10414

this is strange. Why this happens?#include <iostream>
using namespace std;
int
main(){
cout << "something" << endl;
}