結果

問題 No.784 「,(カンマ)」
ユーザー 譁 ュ怜喧縺æ–‡å—åŒ
提出日時 2020-08-17 19:20:17
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 174 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 63,600 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-11 11:13:50
合計ジャッジ時間 1,079 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 5 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;
int main(){
	string n;
	cin >> n;
	for(int i=3;i<n.size();i+=4){
		n.insert(i,",");
	}
	cout<<n<<endl;
	return 0;
}
0