Submission #1840967


Source Code Expand

#include <stdio.h>
#include <stdlib.h>

int main (void)
{
  int i, L, H, N, *array;

  scanf("%d %d", &L, &H);
  scanf("%d", &N);
  array = (int *)malloc(sizeof(int) * N);
  for (i = 0; i < N; i++) {
    scanf("%d", &array[i]);
  }

  for (i = 0; i < N; i++) {
    if (array[i] < L) {
      printf("%d\n", L - array[i]);
    } else if (array[i] > H) {
      printf("-1\n");
    } else {
      printf("0\n");
    }
  }
  free(array);

  return 0;
}

Submission Info

Submission Time
Task B - 運動管理
User gamenerdDAI
Language C (GCC 5.4.1)
Score 100
Code Size 473 Byte
Status AC
Exec Time 1 ms
Memory 128 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:8:3: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d %d", &L, &H);
   ^
./Main.c:9:3: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d", &N);
   ^
./Main.c:12:5: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &array[i]);
     ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 2
AC × 22
Set Name Test Cases
Sample sample-01.txt, sample-02.txt
All sample-01.txt, sample-02.txt, test-01.txt, test-02.txt, test-03.txt, test-04.txt, test-05.txt, test-06.txt, test-07.txt, test-08.txt, test-09.txt, test-10.txt, test-11.txt, test-12.txt, test-13.txt, test-14.txt, test-15.txt, test-16.txt, test-17.txt, test-18.txt, test-19.txt, test-20.txt
Case Name Status Exec Time Memory
sample-01.txt AC 1 ms 128 KB
sample-02.txt AC 1 ms 128 KB
test-01.txt AC 1 ms 128 KB
test-02.txt AC 1 ms 128 KB
test-03.txt AC 1 ms 128 KB
test-04.txt AC 1 ms 128 KB
test-05.txt AC 1 ms 128 KB
test-06.txt AC 1 ms 128 KB
test-07.txt AC 1 ms 128 KB
test-08.txt AC 1 ms 128 KB
test-09.txt AC 1 ms 128 KB
test-10.txt AC 1 ms 128 KB
test-11.txt AC 1 ms 128 KB
test-12.txt AC 1 ms 128 KB
test-13.txt AC 1 ms 128 KB
test-14.txt AC 1 ms 128 KB
test-15.txt AC 1 ms 128 KB
test-16.txt AC 1 ms 128 KB
test-17.txt AC 1 ms 128 KB
test-18.txt AC 1 ms 128 KB
test-19.txt AC 1 ms 128 KB
test-20.txt AC 1 ms 128 KB