Task: | Kortit |
Sender: | Alepa |
Submission time: | 2022-11-02 17:08:06 +0200 |
Language: | C++ (C++11) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.01 s | details |
#2 | WRONG ANSWER | 0.00 s | details |
#3 | ACCEPTED | 0.00 s | details |
#4 | ACCEPTED | 0.00 s | details |
#5 | ACCEPTED | 0.00 s | details |
#6 | ACCEPTED | 0.00 s | details |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:12:14: warning: ignoring return value of 'char* fgets(char*, int, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result] 12 | fgets(userInput, INSIZE, stdin); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
Code
#include <cstdio>#include <iostream>#include <ostream>using namespace std;#define INSIZE 128int main() {char userInput[INSIZE];int value;fgets(userInput, INSIZE, stdin);if (userInput[INSIZE - 1] == '\n') {userInput[INSIZE - 1] = '\0';}value = atoi(userInput);if (value > 0 && value <= 52) {if (value > 26) {cout<<"YES"<<endl;}else if (value < 1) {cout<<"NO"<<endl;}else {cout<<"MAYBE"<<endl;}}return 0;}
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
0 |
correct output |
---|
NO |
user output |
---|
(empty) |
Test 2
Verdict: WRONG ANSWER
input |
---|
1 |
correct output |
---|
NO |
user output |
---|
MAYBE |
Test 3
Verdict: ACCEPTED
input |
---|
2 |
correct output |
---|
MAYBE |
user output |
---|
MAYBE |
Test 4
Verdict: ACCEPTED
input |
---|
26 |
correct output |
---|
MAYBE |
user output |
---|
MAYBE |
Test 5
Verdict: ACCEPTED
input |
---|
27 |
correct output |
---|
YES |
user output |
---|
YES |
Test 6
Verdict: ACCEPTED
input |
---|
52 |
correct output |
---|
YES |
user output |
---|
YES |