結果

問題 No.796 well known
ユーザー uw_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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 15
権限があれば一括ダウンロードができます
コンパイルメッセージ
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