結果
| 問題 | No.784 「,(カンマ)」 |
| コンテスト | |
| ユーザー |
mine691
|
| 提出日時 | 2019-03-27 19:39:29 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 243 bytes |
| 記録 | |
| コンパイル時間 | 693 ms |
| コンパイル使用メモリ | 64,240 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-11 02:24:46 |
| 合計ジャッジ時間 | 1,250 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
#include <iostream>
using namespace std;
const int INF = 1e9 + 7;
int main()
{
string s;
cin >> s;
int n = s.size();
for (int i = n - 3; i > 0; i -= 3)
{
s.insert(s.begin() + i, ',');
}
cout << s << endl;
}
mine691