Submission #2512981


Source Code Expand

#include <stdio.h>

int main(){
  char strget[1000];
  char strans[1000];

  scanf("%s",strget);

  int j = 0;
  int count = 0;
  int num = 0;
  strans[0] = strget[0];

  while(strget[j] != '\0'){
  if(strans[num] == strget[j]){
  count++;
  }else{
  strans[num + 1] = '0' + count;
  num += 2;
  strans[num] = strget[j];
  count = 0;
  }
  j++;
  }

  strans[num + 1] = '0' + count;
  
  
  printf("%s",strans);
  return 0;
}

Submission Info

Submission Time
Task B - 高橋くんと文字列圧縮
User kknkn
Language C++14 (GCC 5.4.1)
Score 0
Code Size 455 Byte
Status RE
Exec Time 112 ms
Memory 128 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:7:21: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%s",strget);
                     ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 100
Status
WA × 3
WA × 23
RE × 10
Set Name Test Cases
Sample subtask0_1.txt, subtask0_2.txt, subtask0_3.txt
All 0.txt, 1.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 2.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, 29.txt, 3.txt, 4.txt, 5.txt, 6.txt, 7.txt, 8.txt, 9.txt, subtask0_1.txt, subtask0_2.txt, subtask0_3.txt
Case Name Status Exec Time Memory
0.txt RE 112 ms 128 KB
1.txt RE 97 ms 128 KB
10.txt WA 1 ms 128 KB
11.txt WA 1 ms 128 KB
12.txt WA 1 ms 128 KB
13.txt WA 1 ms 128 KB
14.txt WA 1 ms 128 KB
15.txt WA 1 ms 128 KB
16.txt WA 1 ms 128 KB
17.txt WA 1 ms 128 KB
18.txt WA 1 ms 128 KB
19.txt WA 1 ms 128 KB
2.txt RE 96 ms 128 KB
20.txt WA 1 ms 128 KB
21.txt WA 1 ms 128 KB
22.txt WA 1 ms 128 KB
23.txt WA 1 ms 128 KB
24.txt WA 1 ms 128 KB
25.txt WA 1 ms 128 KB
26.txt WA 1 ms 128 KB
27.txt WA 1 ms 128 KB
28.txt WA 1 ms 128 KB
29.txt WA 1 ms 128 KB
3.txt RE 96 ms 128 KB
4.txt RE 97 ms 128 KB
5.txt RE 97 ms 128 KB
6.txt RE 95 ms 128 KB
7.txt RE 98 ms 128 KB
8.txt RE 96 ms 128 KB
9.txt RE 97 ms 128 KB
subtask0_1.txt WA 1 ms 128 KB
subtask0_2.txt WA 1 ms 128 KB
subtask0_3.txt WA 1 ms 128 KB