結果
| 問題 |
No.9000 Hello World! (テスト用)
|
| ユーザー |
eitaho
|
| 提出日時 | 2015-04-08 17:00:46 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 570 bytes |
| コンパイル時間 | 3,632 ms |
| コンパイル使用メモリ | 106,356 KB |
| 実行使用メモリ | 23,732 KB |
| 最終ジャッジ日時 | 2024-07-04 13:07:42 |
| 合計ジャッジ時間 | 4,121 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 4 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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(); } }
eitaho