結果

問題 No.784 「,(カンマ)」
ユーザー cureskol
提出日時 2020-03-15 23:00:15
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 1,488 ms
コンパイル使用メモリ 167,244 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-26 06:15:36
合計ジャッジ時間 2,036 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other AC * 1 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

signed main(){
    string s;cin>>s;
    reverse(s.begin(),s.end());
    string t;
    for(int i=0;i<s.size();i++){
        t+=s[i];
        if(i%3==0&&i+1!=s.size())t+=',';
    }
    reverse(t.begin(),t.end());
    cout<<t<<endl;
}
0