結果

問題 No.1971 Easy Sudoku
ユーザー mobchanmobchan
提出日時 2023-05-05 22:57:55
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 550 bytes
コンパイル時間 15,214 ms
コンパイル使用メモリ 165,808 KB
実行使用メモリ 185,924 KB
最終ジャッジ日時 2024-05-02 18:01:12
合計ジャッジ時間 18,819 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
30,436 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 54 ms
30,300 KB
testcase_12 AC 55 ms
30,208 KB
testcase_13 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (102 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main(string[] args)
    {
        var N = int.Parse(Console.ReadLine());
        var s = string.Join("", Enumerable.Range(1, N));

        for (int i = 0; i < N; i++)
        {
            s = s.Substring(1) + s.Substring(0, 1);
            for (int j = 0; j < s.Length; j++)
            {
                Console.Write(s[j]);
                if (j < s.Length - 1) Console.Write(" ");
            }
            Console.WriteLine();
        }
    }
}
0