結果
問題 | No.1942 Leading zero |
ユーザー | kakel-san |
提出日時 | 2024-02-04 13:32:19 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 77 ms / 2,000 ms |
コード長 | 525 bytes |
コンパイル時間 | 9,602 ms |
コンパイル使用メモリ | 169,452 KB |
実行使用メモリ | 186,976 KB |
最終ジャッジ日時 | 2024-09-28 11:14:50 |
合計ジャッジ時間 | 10,287 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 62 ms
30,848 KB |
testcase_01 | AC | 61 ms
30,848 KB |
testcase_02 | AC | 77 ms
186,976 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 static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static int[] NList => ReadLine().Split().Select(int.Parse).ToArray(); static long[] LList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => long.Parse(ReadLine())).ToArray(); public static void Main() { Solve(); } static void Solve() { var n = NN; WriteLine(string.Join("\n", LList(n))); } }