結果

問題 No.796 well known
ユーザー uw_yu1rabbituw_yu1rabbit
提出日時 2020-11-27 20:00:09
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 443 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 3,352 ms
コンパイル使用メモリ 99,852 KB
実行使用メモリ 22,920 KB
最終ジャッジ日時 2023-10-01 04:21:00
合計ジャッジ時間 8,019 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
18,704 KB
testcase_01 AC 55 ms
18,704 KB
testcase_02 AC 55 ms
20,756 KB
testcase_03 AC 56 ms
22,784 KB
testcase_04 AC 344 ms
22,712 KB
testcase_05 AC 376 ms
20,608 KB
testcase_06 AC 443 ms
22,760 KB
testcase_07 AC 135 ms
20,664 KB
testcase_08 AC 377 ms
20,664 KB
testcase_09 AC 260 ms
20,740 KB
testcase_10 AC 428 ms
22,920 KB
testcase_11 AC 100 ms
20,744 KB
testcase_12 AC 230 ms
20,728 KB
testcase_13 AC 341 ms
22,732 KB
testcase_14 AC 180 ms
20,740 KB
testcase_15 AC 236 ms
18,704 KB
testcase_16 AC 437 ms
22,720 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;

namespace ConsoleApp2
{
    class Program
    {
        static void Main(string[] args)
        {
            Int32 n = Int32.Parse(Console.ReadLine());
            for (Int32 i = 0; i < n - 1; i++)
            {
                Console.Write(3);
                Console.Write(" ");
            }
            Console.Write("4\n");
        }
    }
}
0