結果

問題 No.784 「,(カンマ)」
ユーザー leaf+leaf+
提出日時 2019-04-13 01:02:49
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 406 bytes
コンパイル時間 607 ms
コンパイル使用メモリ 56,792 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 06:32:30
合計ジャッジ時間 1,404 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 2 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:12:28: warning: ‘i’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   12 |         if ((i != 0) && (i % 3 == 0)) {
      |                          ~~^~~

ソースコード

diff #

#include <iostream>
#include <string>

int main() {
    int i, j, n;
    std::string ans;
    std::cin >> n;
    while (true) {
        j = n % 10;
        n /= 10;
        ans = std::to_string(j) + ans;
        if ((i != 0) && (i % 3 == 0)) {
            ans = "," + ans;
        }
        i += 1;
        if (n <= 0) {
            break;
        }
    }
    std::cout << ans << std::endl;
    return 0;
}
0