結果

問題 No.1469 programing
ユーザー AsahiAsahi
提出日時 2023-02-06 22:45:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 506 ms / 3,000 ms
コード長 600 bytes
コンパイル時間 3,603 ms
コンパイル使用メモリ 76,604 KB
実行使用メモリ 89,448 KB
最終ジャッジ日時 2024-07-05 00:26:17
合計ジャッジ時間 9,312 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,204 KB
testcase_01 AC 122 ms
54,224 KB
testcase_02 AC 111 ms
53,296 KB
testcase_03 AC 126 ms
54,112 KB
testcase_04 AC 144 ms
54,152 KB
testcase_05 AC 151 ms
54,276 KB
testcase_06 AC 134 ms
54,492 KB
testcase_07 AC 143 ms
54,252 KB
testcase_08 AC 227 ms
54,660 KB
testcase_09 AC 246 ms
56,888 KB
testcase_10 AC 243 ms
54,656 KB
testcase_11 AC 287 ms
56,736 KB
testcase_12 AC 259 ms
56,660 KB
testcase_13 AC 128 ms
54,156 KB
testcase_14 AC 314 ms
56,784 KB
testcase_15 AC 286 ms
57,048 KB
testcase_16 AC 318 ms
57,640 KB
testcase_17 AC 506 ms
89,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
// import java.util.stream.Stream;

class Main{
    static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
    static StringTokenizer st;
    static PrintWriter output = new PrintWriter(System.out);
    static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws IOException{
        String s = sc.next();
        s += "A";
        for(int i=0;i<s.length()-1;i++) {
            if(s.charAt(i) != s.charAt(i+1)) output.print(s.charAt(i));
        }
        output.flush();
    }
}
0