結果

問題 No.2038 Strange Arrange
ユーザー 👑 kakel-sankakel-san
提出日時 2022-08-12 22:27:36
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 935 bytes
コンパイル時間 3,268 ms
コンパイル使用メモリ 109,624 KB
実行使用メモリ 23,864 KB
最終ジャッジ日時 2023-10-24 23:15:58
合計ジャッジ時間 2,395 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
23,864 KB
testcase_01 AC 23 ms
23,864 KB
testcase_02 AC 23 ms
23,864 KB
testcase_03 AC 22 ms
23,864 KB
testcase_04 AC 22 ms
23,864 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 static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(int n) => Enumerable.Repeat(0, n).Select(_ => NList).ToArray();
    static void Main()
    {
        var res = "12131214121312151213121412131216121312141213121512131214121312171213121412131215121312141213121612131214121312151213121412131218121312141213121512131214121312161213121412131215121312141213121712131214121312151213121412131216121312141213121512131214121312191213121412131215121312141213121612131214121312151213121412131217121312141213121512131214121312161213121412131215121312141213121812131214121312151213121412131216121312141213121512131214121312171213121412131215121312141213121612131214121312151213";
        WriteLine(res.Substring(0, NN));
    }
}
0