結果

問題 No.1445 新入生プログラミング鯖
ユーザー bluemeganebluemegane
提出日時 2021-03-31 22:33:48
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 2,094 ms
コンパイル使用メモリ 65,016 KB
実行使用メモリ 22,808 KB
最終ジャッジ日時 2023-08-22 03:06:26
合計ジャッジ時間 3,015 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
20,760 KB
testcase_01 AC 53 ms
20,620 KB
testcase_02 AC 55 ms
20,652 KB
testcase_03 AC 56 ms
22,664 KB
testcase_04 AC 55 ms
22,644 KB
testcase_05 AC 56 ms
22,656 KB
testcase_06 AC 56 ms
20,660 KB
testcase_07 AC 54 ms
22,808 KB
testcase_08 AC 54 ms
20,632 KB
testcase_09 AC 54 ms
20,628 KB
testcase_10 AC 55 ms
22,696 KB
testcase_11 AC 54 ms
20,600 KB
testcase_12 AC 54 ms
20,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        for (int i = 0; i < n; i++)
            Console.WriteLine("Hello! You're new here, right? It's nice to meet you.");
    }
}
0