Submission #1610259


Source Code Expand

#include<stdio.h>
int main(){

   char a,b;

   scanf("%c %c",&a,&b);

   if(a ^ b){
      printf("D\n");
   }else{
      printf("H\n");
   }

   return 0;
}

Submission Info

Submission Time
Task A - HonestOrDishonest
User hashitaku
Language C (GCC 5.4.1)
Score 100
Code Size 171 Byte
Status AC
Exec Time 1 ms
Memory 128 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:6:4: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
    scanf("%c %c",&a,&b);
    ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 4
Set Name Test Cases
Sample 0_000.txt, 0_001.txt, 0_002.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 1_003.txt
Case Name Status Exec Time Memory
0_000.txt AC 1 ms 128 KB
0_001.txt AC 1 ms 128 KB
0_002.txt AC 1 ms 128 KB
1_003.txt AC 1 ms 128 KB