結果
問題 | No.1942 Leading zero |
ユーザー | mobchan |
提出日時 | 2023-04-23 12:44:23 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 97 ms / 2,000 ms |
コード長 | 246 bytes |
コンパイル時間 | 7,599 ms |
コンパイル使用メモリ | 165,972 KB |
実行使用メモリ | 184,060 KB |
最終ジャッジ日時 | 2024-11-07 20:08:49 |
合計ジャッジ時間 | 8,470 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
28,544 KB |
testcase_01 | AC | 51 ms
28,928 KB |
testcase_02 | AC | 97 ms
184,060 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (95 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; class Program { static void Main(string[] args) { var N = int.Parse(Console.ReadLine()); for (int i = 0; i < N; i++) { Console.WriteLine(int.Parse(Console.ReadLine())); } } }