結果

問題 No.1469 programing
ユーザー game_krbgame_krb
提出日時 2021-05-08 15:39:21
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 613 bytes
コンパイル時間 2,232 ms
コンパイル使用メモリ 78,828 KB
実行使用メモリ 55,024 KB
最終ジャッジ日時 2024-09-16 20:34:47
合計ジャッジ時間 15,320 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,060 KB
testcase_01 AC 128 ms
40,836 KB
testcase_02 AC 128 ms
40,908 KB
testcase_03 AC 122 ms
39,860 KB
testcase_04 AC 161 ms
41,240 KB
testcase_05 AC 202 ms
42,004 KB
testcase_06 AC 176 ms
41,332 KB
testcase_07 AC 199 ms
41,544 KB
testcase_08 AC 577 ms
52,680 KB
testcase_09 AC 659 ms
53,652 KB
testcase_10 AC 637 ms
52,896 KB
testcase_11 AC 890 ms
53,676 KB
testcase_12 AC 789 ms
53,504 KB
testcase_13 AC 116 ms
39,900 KB
testcase_14 AC 1,020 ms
55,016 KB
testcase_15 AC 780 ms
54,808 KB
testcase_16 AC 964 ms
55,024 KB
testcase_17 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        String s = sc.next();
        int i = 0;
        while(i < s.length()){
            if(i == s.length()-1){
                System.out.print(s.charAt(i));
                break;
            }
            else if(s.charAt(i) != s.charAt(i+1)){
                System.out.print(s.charAt(i));
                i++;
            }
            else{
                System.out.print(s.charAt(i));
                i += 2;
             }
        }
        System.out.println();
    }
}
0