結果
問題 | No.1971 Easy Sudoku |
ユーザー | NONODOKA |
提出日時 | 2022-06-10 22:20:34 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 55 ms / 2,000 ms |
コード長 | 1,132 bytes |
コンパイル時間 | 10,003 ms |
コンパイル使用メモリ | 169,016 KB |
実行使用メモリ | 187,888 KB |
最終ジャッジ日時 | 2024-09-21 06:30:18 |
合計ジャッジ時間 | 10,484 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
30,976 KB |
testcase_01 | AC | 54 ms
30,848 KB |
testcase_02 | AC | 52 ms
30,848 KB |
testcase_03 | AC | 53 ms
30,848 KB |
testcase_04 | AC | 53 ms
30,848 KB |
testcase_05 | AC | 52 ms
30,956 KB |
testcase_06 | AC | 52 ms
30,976 KB |
testcase_07 | AC | 53 ms
30,848 KB |
testcase_08 | AC | 53 ms
31,104 KB |
testcase_09 | AC | 52 ms
30,832 KB |
testcase_10 | AC | 53 ms
31,104 KB |
testcase_11 | AC | 52 ms
30,848 KB |
testcase_12 | AC | 53 ms
30,972 KB |
testcase_13 | AC | 54 ms
187,888 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (99 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/
ソースコード
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 = 1; 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)); }