結果

問題 No.1445 新入生プログラミング鯖
ユーザー Minami53Minami53
提出日時 2022-05-14 14:09:22
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 13,943 ms
コンパイル使用メモリ 146,672 KB
実行使用メモリ 162,540 KB
最終ジャッジ日時 2023-09-30 05:19:50
合計ジャッジ時間 12,868 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
28,292 KB
testcase_01 AC 49 ms
27,964 KB
testcase_02 AC 49 ms
28,068 KB
testcase_03 AC 48 ms
30,012 KB
testcase_04 AC 48 ms
30,220 KB
testcase_05 AC 48 ms
27,988 KB
testcase_06 AC 50 ms
27,896 KB
testcase_07 AC 49 ms
27,848 KB
testcase_08 AC 49 ms
28,144 KB
testcase_09 AC 50 ms
28,060 KB
testcase_10 AC 48 ms
27,776 KB
testcase_11 AC 48 ms
28,164 KB
testcase_12 AC 48 ms
162,540 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  Determining projects to restore...
  Restored /home/judge/data/code/main.csproj (in 131 ms).
.NET 向け Microsoft (R) Build Engine バージョン 17.0.0-preview-21470-01+cb055d28f
Copyright (C) Microsoft Corporation.All rights reserved.

  プレビュー版の .NET を使用しています。https://aka.ms/dotnet-core-preview をご覧ください
  main -> /home/judge/data/code/bin/Release/net6.0/main.dll
  main -> /home/judge/data/code/bin/Release/net6.0/publish/

ソースコード

diff #

using System;

namespace No1445_gomi
{
    class Program
    {
        static void Main(string[] args)
        {
            int num = Convert.ToInt32(Console.ReadLine());
            // 読み込んだ数値の回数分出力
            for (int i=0; i < num; i++)
            {
                Console.WriteLine("Hello! You're new here, right? It's nice to meet you.");
            }
        }
    }
}
0