結果

問題 No.1469 programing
ユーザー harurunharurun
提出日時 2021-04-03 17:24:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 427 ms / 3,000 ms
コード長 471 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 81,632 KB
最終ジャッジ日時 2024-06-07 04:23:06
合計ジャッジ時間 6,547 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,288 KB
testcase_01 AC 118 ms
41,320 KB
testcase_02 AC 118 ms
41,156 KB
testcase_03 AC 118 ms
41,524 KB
testcase_04 AC 125 ms
41,248 KB
testcase_05 AC 141 ms
41,188 KB
testcase_06 AC 119 ms
40,724 KB
testcase_07 AC 134 ms
41,088 KB
testcase_08 AC 193 ms
42,560 KB
testcase_09 AC 213 ms
43,004 KB
testcase_10 AC 200 ms
42,492 KB
testcase_11 AC 238 ms
43,904 KB
testcase_12 AC 217 ms
44,000 KB
testcase_13 AC 114 ms
41,004 KB
testcase_14 AC 278 ms
46,372 KB
testcase_15 AC 248 ms
45,668 KB
testcase_16 AC 277 ms
46,900 KB
testcase_17 AC 427 ms
81,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.lang.String;
class Main{
  public static void main(String[] args){
    Scanner scan=new Scanner(System.in);
    String S=scan.next();
    int len=S.length();
    StringBuilder ans=new StringBuilder();
    ans.append(S.charAt(0));
    char a=S.charAt(0);
    for(int i=1;i<len;i++){
      if(S.charAt(i)!=a){
        ans.append(S.charAt(i));
      }
      a=S.charAt(i);
    }
    System.out.println(ans.toString());
    return;
  }
}
0