Task: | Karkit |
Sender: | victor05 |
Submission time: | 2021-10-07 10:08:45 +0300 |
Language: | C++ (C++11) |
Status: | READY |
Result: | 100 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 100 |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.01 s | details |
#2 | ACCEPTED | 0.01 s | details |
#3 | ACCEPTED | 0.01 s | details |
#4 | ACCEPTED | 0.01 s | details |
#5 | ACCEPTED | 0.01 s | details |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:7:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result] scanf("%hhd", &n); ~~~~~^~~~~~~~~~~~ input/code.cpp:8:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result] scanf("%hhd", &a); ~~~~~^~~~~~~~~~~~ input/code.cpp:9:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result] scanf("%hhd", &b); ~~~~~^~~~~~~~~~~~
Code
#include <stdio.h> #include <stdint.h> int main(void) { uint8_t n, a, b; scanf("%hhd", &n); scanf("%hhd", &a); scanf("%hhd", &b); printf("%hhd\n", n / (a < b ? a : b)); return 0; }
Test details
Test 1
Verdict: ACCEPTED
input |
---|
100 1 1 |
correct output |
---|
100 |
user output |
---|
100 |
Test 2
Verdict: ACCEPTED
input |
---|
1 100 100 |
correct output |
---|
0 |
user output |
---|
0 |
Test 3
Verdict: ACCEPTED
input |
---|
50 2 3 |
correct output |
---|
25 |
user output |
---|
25 |
Test 4
Verdict: ACCEPTED
input |
---|
100 17 3 |
correct output |
---|
33 |
user output |
---|
33 |
Test 5
Verdict: ACCEPTED
input |
---|
5 5 5 |
correct output |
---|
1 |
user output |
---|
1 |