結果

問題 No.1469 programing
ユーザー ks2mks2m
提出日時 2021-04-09 21:22:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 438 ms / 3,000 ms
コード長 397 bytes
コンパイル時間 2,030 ms
コンパイル使用メモリ 74,632 KB
実行使用メモリ 90,052 KB
最終ジャッジ日時 2024-06-25 03:55:35
合計ジャッジ時間 6,554 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,288 KB
testcase_01 AC 125 ms
41,304 KB
testcase_02 AC 124 ms
41,380 KB
testcase_03 AC 126 ms
41,160 KB
testcase_04 AC 127 ms
41,392 KB
testcase_05 AC 137 ms
41,200 KB
testcase_06 AC 127 ms
41,164 KB
testcase_07 AC 122 ms
41,360 KB
testcase_08 AC 205 ms
42,792 KB
testcase_09 AC 214 ms
43,500 KB
testcase_10 AC 199 ms
42,396 KB
testcase_11 AC 230 ms
43,960 KB
testcase_12 AC 226 ms
43,500 KB
testcase_13 AC 121 ms
41,144 KB
testcase_14 AC 247 ms
46,860 KB
testcase_15 AC 246 ms
46,016 KB
testcase_16 AC 272 ms
46,224 KB
testcase_17 AC 438 ms
90,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		char[] s = sc.next().toCharArray();
		sc.close();

		StringBuilder sb = new StringBuilder();
		sb.append(s[0]);
		for (int i = 1; i < s.length; i++) {
			if (s[i - 1] != s[i]) {
				sb.append(s[i]);
			}
		}
		System.out.println(sb.toString());
	}
}
0