Task: | Kortit |
Sender: | afraid |
Submission time: | 2022-11-02 13:29:55 +0200 |
Language: | C++ (C++11) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.00 s | details |
#2 | WRONG ANSWER | 0.00 s | details |
#3 | WRONG ANSWER | 0.00 s | details |
#4 | WRONG ANSWER | 0.00 s | details |
#5 | WRONG ANSWER | 0.00 s | details |
#6 | WRONG ANSWER | 0.00 s | details |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:7:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result] 7 | scanf("%d", &cards); | ~~~~~^~~~~~~~~~~~~~
Code
#include <stdio.h> int main() { int cards; scanf("%d", &cards); if (cards<2) { printf("No\n"); } else if (cards>26) { printf("Yes\n"); } else { printf("maybe\n"); } }
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
0 |
correct output |
---|
NO |
user output |
---|
No |
Test 2
Verdict: WRONG ANSWER
input |
---|
1 |
correct output |
---|
NO |
user output |
---|
No |
Test 3
Verdict: WRONG ANSWER
input |
---|
2 |
correct output |
---|
MAYBE |
user output |
---|
maybe |
Test 4
Verdict: WRONG ANSWER
input |
---|
26 |
correct output |
---|
MAYBE |
user output |
---|
maybe |
Test 5
Verdict: WRONG ANSWER
input |
---|
27 |
correct output |
---|
YES |
user output |
---|
Yes |
Test 6
Verdict: WRONG ANSWER
input |
---|
52 |
correct output |
---|
YES |
user output |
---|
Yes |