結果

問題 No.1264 010
ユーザー keymoonkeymoon
提出日時 2020-10-23 22:02:19
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 59 ms / 1,000 ms
コード長 462 bytes
コンパイル時間 1,927 ms
コンパイル使用メモリ 104,888 KB
実行使用メモリ 23,780 KB
最終ジャッジ日時 2023-09-28 15:47:40
合計ジャッジ時間 3,560 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
23,780 KB
testcase_01 AC 56 ms
23,648 KB
testcase_02 AC 58 ms
21,816 KB
testcase_03 AC 58 ms
21,668 KB
testcase_04 AC 59 ms
21,536 KB
testcase_05 AC 58 ms
19,556 KB
testcase_06 AC 57 ms
21,508 KB
testcase_07 AC 58 ms
21,720 KB
testcase_08 AC 57 ms
21,712 KB
testcase_09 AC 57 ms
19,612 KB
testcase_10 AC 58 ms
23,528 KB
testcase_11 AC 59 ms
23,636 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;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
public static class P
{
    public static void Main()
    {
        int n = int.Parse(Console.ReadLine());
        Console.WriteLine($"01{string.Join("", Enumerable.Repeat(0, n))}");
    }
}
0