Submission #1623261


Source Code Expand

# include<stdio.h>

int main(int argc, char* argv[])
{
  char name[13];
  int i = 0;
  char* p = name;
  scanf("%s", name);
  while(*p != '\0'){
    if((i == 0) && (*p >= 'a')){
      *p -= 0x20;
    }else if((i > 0) && (*p < 'a')){
      *p += 0x20;
    }
    printf("%c", *p);
    ++p, ++i;
  }
  printf("\n");
}

Submission Info

Submission Time
Task B - 名前の確認
User bocchi
Language C (GCC 5.4.1)
Score 100
Code Size 332 Byte
Status AC
Exec Time 0 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("%s", name);
   ^

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 10
Set Name Test Cases
All sample_01.txt, sample_02.txt, test_AzielehadfJD.txt, test_Oq.txt, test_P.txt, test_Wi.txt, test_ZNEFzealEAkD.txt, test_aAZaz.txt, test_z.txt, test_zDkElDjNVmAq.txt
Case Name Status Exec Time Memory
sample_01.txt AC 0 ms 128 KB
sample_02.txt AC 0 ms 128 KB
test_AzielehadfJD.txt AC 0 ms 128 KB
test_Oq.txt AC 0 ms 128 KB
test_P.txt AC 0 ms 128 KB
test_Wi.txt AC 0 ms 128 KB
test_ZNEFzealEAkD.txt AC 0 ms 128 KB
test_aAZaz.txt AC 0 ms 128 KB
test_z.txt AC 0 ms 128 KB
test_zDkElDjNVmAq.txt AC 0 ms 128 KB