結果

問題 No.964 2020
ユーザー curryudon08curryudon08
提出日時 2020-06-09 14:39:31
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 25 ms / 2,020 ms
コード長 639 bytes
コンパイル時間 786 ms
コンパイル使用メモリ 107,536 KB
実行使用メモリ 25,820 KB
最終ジャッジ日時 2024-06-10 12:24:57
合計ジャッジ時間 1,749 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
23,984 KB
testcase_01 AC 24 ms
23,728 KB
testcase_02 AC 24 ms
21,680 KB
testcase_03 AC 25 ms
25,820 KB
testcase_04 AC 24 ms
23,852 KB
testcase_05 AC 24 ms
23,668 KB
testcase_06 AC 24 ms
21,936 KB
testcase_07 AC 24 ms
23,644 KB
testcase_08 AC 24 ms
23,900 KB
testcase_09 AC 24 ms
25,680 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace _0964
{
    class Program
    {
        static void Main(string[] args)
        {
            var n = int.Parse(Console.ReadLine());

            var s = new string[n];
            if(n != 10){
                for(var i = 1; i <= n; i++){
                    s[i-1] = new string(Convert.ToChar(i.ToString()),n);
                }
            }else{
                for(var i = 1; i <= n-1; i++){
                    s[i-1] = new string(Convert.ToChar(i.ToString()),n);
                }
                s[n-1] = new string('0',n);
            }

            Console.WriteLine(string.Join("",s));
        }
    }
}
0