結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | 望月ひびき |
提出日時 | 2022-04-12 17:26:55 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 43 ms / 5,000 ms |
コード長 | 155 bytes |
コンパイル時間 | 8,867 ms |
コンパイル使用メモリ | 166,608 KB |
実行使用メモリ | 181,108 KB |
最終ジャッジ日時 | 2024-05-10 03:57:17 |
合計ジャッジ時間 | 9,690 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
26,496 KB |
testcase_01 | AC | 43 ms
26,624 KB |
testcase_02 | AC | 42 ms
27,008 KB |
testcase_03 | AC | 41 ms
181,108 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (107 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; public class Program { static void Main() { string s = Console.ReadLine(); Console.WriteLine("Hello World!"); } }