結果

問題 No.784 「,(カンマ)」
ユーザー CroweaCrowea
提出日時 2019-03-25 00:01:09
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 1,616 ms
コンパイル使用メモリ 62,488 KB
実行使用メモリ 23,112 KB
最終ジャッジ日時 2023-07-27 20:18:52
合計ジャッジ時間 2,387 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
21,144 KB
testcase_01 AC 61 ms
22,932 KB
testcase_02 AC 60 ms
21,124 KB
testcase_03 AC 61 ms
20,968 KB
testcase_04 AC 60 ms
21,040 KB
testcase_05 AC 60 ms
23,112 KB
testcase_06 AC 61 ms
21,228 KB
testcase_07 AC 60 ms
18,932 KB
testcase_08 AC 60 ms
20,984 KB
testcase_09 AC 60 ms
21,128 KB
testcase_10 AC 60 ms
21,112 KB
testcase_11 AC 60 ms
21,056 KB
testcase_12 AC 59 ms
21,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

namespace yukicoder
{
    class Program
    {
        static void Main(string[] args)
        {
            //String.Format("{0:#,0} バイト", 1234567)
            Console.WriteLine(string.Format("{0:#,0}", int.Parse(Console.ReadLine())));
        }
    }
}
0