結果

問題 No.1469 programing
ユーザー ks2mks2m
提出日時 2021-04-09 21:21:45
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 356 bytes
コンパイル時間 2,191 ms
コンパイル使用メモリ 74,900 KB
実行使用メモリ 56,368 KB
最終ジャッジ日時 2024-06-25 03:53:21
合計ジャッジ時間 15,104 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
40,800 KB
testcase_01 AC 124 ms
41,144 KB
testcase_02 AC 128 ms
41,036 KB
testcase_03 AC 137 ms
41,052 KB
testcase_04 AC 158 ms
41,796 KB
testcase_05 AC 197 ms
41,716 KB
testcase_06 AC 169 ms
41,620 KB
testcase_07 AC 193 ms
41,940 KB
testcase_08 AC 541 ms
53,108 KB
testcase_09 AC 619 ms
53,660 KB
testcase_10 AC 597 ms
53,672 KB
testcase_11 AC 878 ms
54,576 KB
testcase_12 AC 817 ms
54,076 KB
testcase_13 AC 123 ms
41,180 KB
testcase_14 AC 1,211 ms
56,368 KB
testcase_15 AC 806 ms
55,152 KB
testcase_16 AC 919 ms
55,404 KB
testcase_17 TLE -
権限があれば一括ダウンロードができます

ソースコード

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();

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