結果

問題 No.784 「,(カンマ)」
ユーザー rabirabi
提出日時 2019-08-15 15:01:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 473 bytes
コンパイル時間 2,241 ms
コンパイル使用メモリ 73,892 KB
実行使用メモリ 37,244 KB
最終ジャッジ日時 2024-09-19 15:18:45
合計ジャッジ時間 3,125 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
37,008 KB
testcase_01 AC 48 ms
37,220 KB
testcase_02 AC 48 ms
37,020 KB
testcase_03 AC 47 ms
37,244 KB
testcase_04 AC 49 ms
37,152 KB
testcase_05 AC 47 ms
36,860 KB
testcase_06 AC 47 ms
37,196 KB
testcase_07 AC 47 ms
36,984 KB
testcase_08 AC 46 ms
37,232 KB
testcase_09 AC 47 ms
37,108 KB
testcase_10 AC 48 ms
37,208 KB
testcase_11 AC 51 ms
37,052 KB
testcase_12 AC 50 ms
37,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

class test {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb = new StringBuilder(br.readLine());
        int l = sb.length();
        for(int i=l-1; i>=1; i--){
            if ((l-i)%3==0) sb.insert(i,",");
        }
        System.out.println(sb);
    }
}
0