結果
問題 | No.1971 Easy Sudoku |
ユーザー | mobchan |
提出日時 | 2023-05-05 22:57:55 |
言語 | C# (.NET 8.0.203) |
結果 |
WA
|
実行時間 | - |
コード長 | 550 bytes |
コンパイル時間 | 7,622 ms |
コンパイル使用メモリ | 167,380 KB |
実行使用メモリ | 186,580 KB |
最終ジャッジ日時 | 2024-11-23 11:04:54 |
合計ジャッジ時間 | 11,247 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
30,592 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 | 57 ms
30,336 KB |
testcase_12 | AC | 58 ms
30,464 KB |
testcase_13 | WA | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (97 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 { 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(); } } }