結果

問題 No.1291 小手調べ
ユーザー bluemeganebluemegane
提出日時 2020-11-20 22:32:55
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 326 bytes
コンパイル時間 1,631 ms
コンパイル使用メモリ 62,888 KB
実行使用メモリ 22,728 KB
最終ジャッジ日時 2023-09-30 19:36:49
合計ジャッジ時間 1,997 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
22,680 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 54 ms
20,852 KB
testcase_04 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        for (int i = 0; i < n; i++)
        {
            var d = int.Parse(Console.ReadLine().Trim());
            Console.Write(9);
            Console.WriteLine(new string('0', d - 1));
        }
    }
}
0