結果

問題 No.9000 Hello World! (テスト用)
ユーザー eitahoeitaho
提出日時 2015-04-08 17:00:46
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 570 bytes
コンパイル時間 2,421 ms
コンパイル使用メモリ 102,044 KB
実行使用メモリ 19,900 KB
最終ジャッジ日時 2023-09-17 18:38:52
合計ジャッジ時間 3,119 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.IO;
using System.Linq;
using System.Text;
using System.Collections.Generic;
using System.Diagnostics;
using System.Numerics;
using Enu = System.Linq.Enumerable;
using System.Runtime.InteropServices;

class Program
{
    [DllImport("msvcrt.dll")]
    static extern int scanf(string format, __arglist);

    [DllImport("msvcrt.dll")]
    static extern int printf(string format, __arglist);
 
    public void Solve()
    {
        printf("%s\n", __arglist("Hello World!"));
    }

}


class Entry { static void Main() { new Program().Solve(); } }
0