Submission #1473808


Source Code Expand

#include <stdio.h>                                                                                           
#include <string.h>                                                                                          
#include <stdlib.h>                                                                                          
                                                                                                             
int main(void)                                                                                               
{                                                                                                            
        int num, cut = 0, i;                                                                                 
        int *hana = NULL;                                                                                    
                                                                                                             
        scanf("%d", &num);                                                                                   
                                                                                                             
        if ((hana = calloc(sizeof(int), num)) == NULL) {                                                     
                return -1;                                                                                   
        }                                                                                                    
                                                                                                             
        for (i = 0; i < num; i++) {                                                                          
                scanf("%d", &hana[i]);                                                                       
        }                                                                                                    
                                                                                                             
        for (i = 0; i < num; i++) {                                                                          
                if (hana[i] < 3) {                                                                           
                        cut += hana[i] - 1;                                                                  
                } else if (hana[i] >= 3 && hana[i] < 7) {                                                    
                        cut += hana[i] - 3;                                                                  
                } else if (hana[i] >= 7 && hana[i] < 9) {                                                    
                        cut += hana[i] - 7;                                                                  
                }                                                                                            
        }                                                                                                    
                                                                                                             
        printf("%d\n", cut);                                                                                 
        free(hana);                                                                                          
        return 0;                                                                                            
} 

Submission Info

Submission Time
Task B - 花占い
User zhencaimei
Language C (GCC 5.4.1)
Score 100
Code Size 3554 Byte
Status AC
Exec Time 1 ms
Memory 128 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:10:9: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d", &num);                                                                                   
         ^
./Main.c:17:17: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
                 scanf("%d", &hana[i]);                                                                       
                 ^

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 20
Set Name Test Cases
All sample_01.txt, sample_02.txt, test_1.txt, test_112358.txt, test_1379137913.txt, test_1414213562.txt, test_1732151817.txt, test_2.txt, test_2236167977.txt, test_2645751311.txt, test_3.txt, test_3141592653.txt, test_4.txt, test_5.txt, test_6.txt, test_6666666666.txt, test_7.txt, test_73.txt, test_8.txt, test_9.txt
Case Name Status Exec Time Memory
sample_01.txt AC 1 ms 128 KB
sample_02.txt AC 1 ms 128 KB
test_1.txt AC 1 ms 128 KB
test_112358.txt AC 1 ms 128 KB
test_1379137913.txt AC 1 ms 128 KB
test_1414213562.txt AC 1 ms 128 KB
test_1732151817.txt AC 1 ms 128 KB
test_2.txt AC 1 ms 128 KB
test_2236167977.txt AC 1 ms 128 KB
test_2645751311.txt AC 1 ms 128 KB
test_3.txt AC 1 ms 128 KB
test_3141592653.txt AC 1 ms 128 KB
test_4.txt AC 1 ms 128 KB
test_5.txt AC 1 ms 128 KB
test_6.txt AC 1 ms 128 KB
test_6666666666.txt AC 1 ms 128 KB
test_7.txt AC 1 ms 128 KB
test_73.txt AC 1 ms 128 KB
test_8.txt AC 1 ms 128 KB
test_9.txt AC 1 ms 128 KB