結果

問題 No.796 well known
ユーザー uw_yu1rabbituw_yu1rabbit
提出日時 2020-11-27 20:00:09
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 422 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 2,682 ms
コンパイル使用メモリ 108,344 KB
実行使用メモリ 27,720 KB
最終ジャッジ日時 2024-07-23 21:45:05
合計ジャッジ時間 7,562 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
23,392 KB
testcase_01 AC 23 ms
23,732 KB
testcase_02 AC 25 ms
23,516 KB
testcase_03 AC 24 ms
23,668 KB
testcase_04 AC 318 ms
25,676 KB
testcase_05 AC 354 ms
23,600 KB
testcase_06 AC 422 ms
27,720 KB
testcase_07 AC 109 ms
17,920 KB
testcase_08 AC 360 ms
19,456 KB
testcase_09 AC 237 ms
18,688 KB
testcase_10 AC 418 ms
19,840 KB
testcase_11 AC 73 ms
18,048 KB
testcase_12 AC 198 ms
18,560 KB
testcase_13 AC 314 ms
19,328 KB
testcase_14 AC 156 ms
18,432 KB
testcase_15 AC 219 ms
18,432 KB
testcase_16 AC 422 ms
19,712 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