結果

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

ソースコード

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==2&&i+1!=s.size())t+=',';
    }
    reverse(t.begin(),t.end());
    cout<<t<<endl;
}
0