結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 48 ms
37,144 KB
testcase_02 WA -
testcase_03 AC 48 ms
37,148 KB
testcase_04 AC 47 ms
37,236 KB
testcase_05 WA -
testcase_06 AC 48 ms
37,112 KB
testcase_07 AC 49 ms
37,172 KB
testcase_08 WA -
testcase_09 AC 48 ms
36,844 KB
testcase_10 AC 47 ms
36,900 KB
testcase_11 WA -
testcase_12 AC 47 ms
37,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
    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>=0; i--){
            if ((l-i)%3==0) sb.insert(i,",");
        }
        System.out.println(sb);
    }
}
0