結果
問題 | No.1291 小手調べ |
ユーザー | kakel-san |
提出日時 | 2024-12-10 23:34:59 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 54 ms / 2,000 ms |
コード長 | 673 bytes |
コンパイル時間 | 15,644 ms |
コンパイル使用メモリ | 165,572 KB |
実行使用メモリ | 184,556 KB |
最終ジャッジ日時 | 2024-12-10 23:35:19 |
合計ジャッジ時間 | 16,804 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
29,952 KB |
testcase_01 | AC | 54 ms
29,696 KB |
testcase_02 | AC | 52 ms
29,692 KB |
testcase_03 | AC | 53 ms
29,796 KB |
testcase_04 | AC | 50 ms
184,556 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /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 static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static long[] NList => ReadLine().Split().Select(long.Parse).ToArray(); public static void Main() { Solve(); } static void Solve() { var n = NN; var ans = new string[n]; for (var i = 0; i < n; ++i) { var d = NN; if (d == 1) ans[i] = "10"; else ans[i] = string.Concat(new List<char>{ '9' }.Concat(Enumerable.Repeat('0', d - 1))); } WriteLine(string.Join("\n", ans)); } }