Submission #719016
Source Code Expand
#include <stdio.h>
int main(void)
{
int a,b, a1, b1, max;
long c;
scanf("%d %d %d", &a, &b, &c);
a1 = c / a;
b1 = c / b;
if (a1 > b1)
max = a1;
else
max = b1;
printf("%d\n", max);
return 0;
}
Submission Info
| Submission Time | |
|---|---|
| Task | A - 饅頭 |
| User | bogard |
| Language | C (GCC 5.4.1) |
| Score | 100 |
| Code Size | 247 Byte |
| Status | AC |
| Exec Time | 3 ms |
| Memory | 128 KiB |
Compile Error
./Main.c: In function ‘main’:
./Main.c:9:9: warning: format ‘%d’ expects argument of type ‘int *’, but argument 4 has type ‘long int *’ [-Wformat=]
scanf("%d %d %d", &a, &b, &c);
^
./Main.c:9:3: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
scanf("%d %d %d", &a, &b, &c);
^
Judge Result
| Set Name | sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 100 / 100 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| sample | sample01.txt, sample02.txt |
| All | 00.txt, 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, 29.txt, sample01.txt, sample02.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 00.txt | AC | 2 ms | 128 KiB |
| 01.txt | AC | 2 ms | 128 KiB |
| 02.txt | AC | 2 ms | 128 KiB |
| 03.txt | AC | 2 ms | 128 KiB |
| 04.txt | AC | 3 ms | 128 KiB |
| 05.txt | AC | 2 ms | 128 KiB |
| 06.txt | AC | 2 ms | 128 KiB |
| 07.txt | AC | 2 ms | 128 KiB |
| 08.txt | AC | 2 ms | 128 KiB |
| 09.txt | AC | 2 ms | 128 KiB |
| 10.txt | AC | 2 ms | 128 KiB |
| 11.txt | AC | 2 ms | 128 KiB |
| 12.txt | AC | 2 ms | 128 KiB |
| 13.txt | AC | 2 ms | 128 KiB |
| 14.txt | AC | 3 ms | 128 KiB |
| 15.txt | AC | 2 ms | 128 KiB |
| 16.txt | AC | 2 ms | 128 KiB |
| 17.txt | AC | 2 ms | 128 KiB |
| 18.txt | AC | 2 ms | 128 KiB |
| 19.txt | AC | 2 ms | 128 KiB |
| 20.txt | AC | 2 ms | 128 KiB |
| 21.txt | AC | 2 ms | 128 KiB |
| 22.txt | AC | 2 ms | 128 KiB |
| 23.txt | AC | 2 ms | 128 KiB |
| 24.txt | AC | 2 ms | 128 KiB |
| 25.txt | AC | 2 ms | 128 KiB |
| 26.txt | AC | 2 ms | 128 KiB |
| 27.txt | AC | 2 ms | 128 KiB |
| 28.txt | AC | 2 ms | 128 KiB |
| 29.txt | AC | 2 ms | 128 KiB |
| sample01.txt | AC | 2 ms | 128 KiB |
| sample02.txt | AC | 2 ms | 128 KiB |