結果
| 問題 | No.784 「,(カンマ)」 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2020-04-24 21:04:59 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 438 bytes | 
| コンパイル時間 | 1,600 ms | 
| コンパイル使用メモリ | 167,344 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-10-15 02:09:23 | 
| 合計ジャッジ時間 | 2,254 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 10 | 
ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;
using ll =  long long ;
using P = pair<int,int> ;
const int INF = 1e9;
const int MOD = 1000000007;
int main(){
    string n;
    cin >> n;
    reverse(n.begin(),n.end());
    string ans ;
    rep(i,n.size()){
        if(i!= 0 && i%3 ==0) ans += ',';
        ans += n[i];
    }
    reverse(ans.begin(),ans.end());
    cout << ans << endl;
    return 0;
}
            
            
            
        