Submission #3458786


Source Code Expand

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String str = sc.next();
		sc.close();
		
		StringBuilder ans = new StringBuilder();
		char c = str.charAt(0);
		int num = 1;
		for(int i = 1;i < str.length();++i) {
			if(str.charAt(i) != c) {
				ans.append(c);
				ans.append(num);
				num = 1;
				c = str.charAt(i);
			} else {
				num++;
			}
		}
		ans.append(c);
		ans.append(num);
		System.out.println(ans.toString());
	}
}

Submission Info

Submission Time
Task B - 高橋くんと文字列圧縮
User VantageMoon
Language Java8 (OpenJDK 1.8.0)
Score 100
Code Size 536 Byte
Status AC
Exec Time 104 ms
Memory 23636 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 33
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 AC 104 ms 23124 KB
1.txt AC 103 ms 18900 KB
10.txt AC 103 ms 21588 KB
11.txt AC 97 ms 17876 KB
12.txt AC 89 ms 19796 KB
13.txt AC 92 ms 20820 KB
14.txt AC 91 ms 21844 KB
15.txt AC 102 ms 21076 KB
16.txt AC 102 ms 21204 KB
17.txt AC 93 ms 23252 KB
18.txt AC 102 ms 21204 KB
19.txt AC 92 ms 20692 KB
2.txt AC 101 ms 18640 KB
20.txt AC 92 ms 23636 KB
21.txt AC 91 ms 18772 KB
22.txt AC 92 ms 21588 KB
23.txt AC 101 ms 19796 KB
24.txt AC 91 ms 21716 KB
25.txt AC 103 ms 21460 KB
26.txt AC 91 ms 20564 KB
27.txt AC 91 ms 19156 KB
28.txt AC 93 ms 17748 KB
29.txt AC 92 ms 18644 KB
3.txt AC 102 ms 20692 KB
4.txt AC 94 ms 21204 KB
5.txt AC 103 ms 19028 KB
6.txt AC 104 ms 23124 KB
7.txt AC 93 ms 19284 KB
8.txt AC 94 ms 19668 KB
9.txt AC 93 ms 21332 KB
subtask0_1.txt AC 89 ms 19156 KB
subtask0_2.txt AC 87 ms 19156 KB
subtask0_3.txt AC 89 ms 21584 KB