結果

問題 No.1469 programing
ユーザー harurunharurun
提出日時 2021-04-03 12:23:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 451 ms / 3,000 ms
コード長 626 bytes
コンパイル時間 3,296 ms
コンパイル使用メモリ 74,656 KB
実行使用メモリ 81,796 KB
最終ジャッジ日時 2024-06-06 23:26:47
合計ジャッジ時間 7,747 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,780 KB
testcase_01 AC 114 ms
40,768 KB
testcase_02 AC 118 ms
41,056 KB
testcase_03 AC 117 ms
41,196 KB
testcase_04 AC 119 ms
40,996 KB
testcase_05 AC 132 ms
40,916 KB
testcase_06 AC 102 ms
39,824 KB
testcase_07 AC 114 ms
40,304 KB
testcase_08 AC 198 ms
42,480 KB
testcase_09 AC 209 ms
43,184 KB
testcase_10 AC 187 ms
42,752 KB
testcase_11 AC 220 ms
44,004 KB
testcase_12 AC 232 ms
43,724 KB
testcase_13 AC 103 ms
39,980 KB
testcase_14 AC 281 ms
45,796 KB
testcase_15 AC 237 ms
45,492 KB
testcase_16 AC 287 ms
45,656 KB
testcase_17 AC 451 ms
81,796 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;
    try{
      S=scan.next();
    }catch(Exception e){
      System.out.println();
      return;
    }
    int len=S.length();
    if(len<2){
      System.out.println(S);
      return;
    }
    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