結果

問題 No.1643 Not Substring
ユーザー merlinmerlin
提出日時 2021-08-13 21:27:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 3,290 ms
コンパイル使用メモリ 74,176 KB
実行使用メモリ 37,108 KB
最終ジャッジ日時 2024-10-03 21:30:36
合計ジャッジ時間 5,250 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,952 KB
testcase_01 AC 50 ms
36,720 KB
testcase_02 AC 49 ms
36,776 KB
testcase_03 AC 52 ms
36,872 KB
testcase_04 AC 50 ms
37,008 KB
testcase_05 AC 50 ms
36,932 KB
testcase_06 AC 52 ms
36,952 KB
testcase_07 AC 51 ms
36,784 KB
testcase_08 AC 51 ms
36,956 KB
testcase_09 AC 52 ms
36,784 KB
testcase_10 AC 50 ms
36,576 KB
testcase_11 AC 52 ms
36,708 KB
testcase_12 AC 51 ms
36,476 KB
testcase_13 AC 52 ms
37,100 KB
testcase_14 AC 51 ms
36,784 KB
testcase_15 AC 52 ms
37,064 KB
testcase_16 AC 53 ms
36,896 KB
testcase_17 AC 50 ms
36,936 KB
testcase_18 AC 52 ms
36,956 KB
testcase_19 AC 51 ms
36,828 KB
testcase_20 AC 50 ms
36,948 KB
testcase_21 AC 51 ms
36,956 KB
testcase_22 AC 53 ms
36,980 KB
testcase_23 AC 51 ms
36,588 KB
testcase_24 AC 51 ms
36,944 KB
testcase_25 AC 51 ms
36,444 KB
testcase_26 AC 52 ms
37,108 KB
testcase_27 AC 53 ms
36,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        String s=bu.readLine();
        int i,n=s.length(),a=1;
        for(i=0;i<n;i++)
        if(s.charAt(i)=='a') a++;

        while(a-->0) sb.append('a');
        System.out.println(sb);
    }
}
0