Submission #906273


Source Code Expand

#include <stdio.h>
int main(){
  
  int a;
  int b1,b2;
  b1='S';
  b2='T';
  
  int count,length,catch;
  count=0; length=0; catch=0;
  for(;;){
    if((a=fgetc(stdin))=='\n'){break;}
    length++;
    if(count==0){
      if(a==b1){
        count++;
      }else if(a==b2){
      }
    }else if(count>0){
      if(a==b1){
        count++;
      }else if(a==b2){
        count=count-1;
        catch=catch+2;
      }
    }
  }
  printf("%d\n",length-catch);
  return 0;
}

Submission Info

Submission Time
Task A - STring
User a45823
Language C (GCC 5.4.1)
Score 300
Code Size 499 Byte
Status AC
Exec Time 4 ms
Memory 128 KB

Judge Result

Set Name Sample Subtask1 All
Score / Max Score 0 / 0 200 / 200 100 / 100
Status
AC × 3
AC × 9
AC × 13
Set Name Test Cases
Sample example0, example1, example2
Subtask1 example0, example1, example2, sub_corner0, sub_corner1, sub_corner2, sub_rand0, handmade0, handmade1
All corner0, corner1, corner2, example0, example1, example2, handmade0, handmade1, maxrand0, sub_corner0, sub_corner1, sub_corner2, sub_rand0
Case Name Status Exec Time Memory
corner0 AC 3 ms 128 KB
corner1 AC 3 ms 128 KB
corner2 AC 3 ms 128 KB
example0 AC 1 ms 128 KB
example1 AC 1 ms 128 KB
example2 AC 1 ms 128 KB
handmade0 AC 1 ms 128 KB
handmade1 AC 1 ms 128 KB
maxrand0 AC 4 ms 128 KB
sub_corner0 AC 1 ms 128 KB
sub_corner1 AC 1 ms 128 KB
sub_corner2 AC 1 ms 128 KB
sub_rand0 AC 1 ms 128 KB