結果

問題 No.9000 Hello World! (テスト用)
ユーザー _i1115_i1115
提出日時 2020-04-08 01:14:55
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 161 bytes
コンパイル時間 1,188 ms
コンパイル使用メモリ 60,964 KB
実行使用メモリ 22,592 KB
最終ジャッジ日時 2023-09-22 20:48:49
合計ジャッジ時間 1,486 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
20,488 KB
testcase_01 AC 48 ms
20,504 KB
testcase_02 AC 48 ms
22,592 KB
testcase_03 AC 49 ms
22,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

public class Program
{
    static void Main ()
    {
        string str = Console.ReadLine ();
        Console.WriteLine ("Hello World!");
    }
}
0