結果

問題 No.1971 Easy Sudoku
ユーザー NONODOKANONODOKA
提出日時 2022-06-10 22:15:31
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,131 bytes
コンパイル時間 7,194 ms
コンパイル使用メモリ 160,584 KB
実行使用メモリ 179,264 KB
最終ジャッジ日時 2023-10-21 05:20:15
合計ジャッジ時間 11,127 ms
ジャッジサーバーID
(参考情報)
judge10 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
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 WA -
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (100 ms)。
MSBuild のバージョン 17.7.3+8ec440e68 (.NET)
  main -> /home/judge/data/code/bin/Release/net7.0/main.dll
  main -> /home/judge/data/code/bin/Release/net7.0/publish/

ソースコード

diff #

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

class Program
{
    internal static void Main() => new Program().Solve();

    void Solve()
    {
        //code
        int n = IO.Read<int>();
        var linklist = new LinkedList<int>();
        for (int i = 0; i < n; i++)
        {
            linklist.AddLast(i);
        }
        for (int i = 0; i < n; i++)
        {
            IO.WriteEnum<int>(linklist);
            LinkedListNode<int> node = linklist.First;
            linklist.RemoveFirst();
            linklist.AddLast(node);
        }
    }

}

static class IO
{
    static readonly Queue<string> que = new Queue<string>();
    public static T Read<T>() { if (!que.Any()) foreach (var s in Console.ReadLine().Split()) que.Enqueue(s); return (T)Convert.ChangeType(que.Dequeue(), typeof(T)); }
    public static IEnumerable<T> ReadEnum<T>(long n) { for (long i = 0; i < n; i++) yield return Read<T>(); }
    public static void Write<T>(T item) => Console.WriteLine(item);
    public static void WriteEnum<T>(IEnumerable<T> items, string separetor = " ") => Write(string.Join(separetor, items));
}
0