結果

問題 No.9000 Hello World! (テスト用)
ユーザー hum_ophum_op
提出日時 2016-04-02 18:33:07
言語 F#
(F# 4.0)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 108 bytes
コンパイル時間 5,446 ms
コンパイル使用メモリ 152,832 KB
実行使用メモリ 22,160 KB
最終ジャッジ日時 2023-08-26 12:38:43
合計ジャッジ時間 6,341 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
22,160 KB
testcase_01 AC 63 ms
22,152 KB
testcase_02 AC 62 ms
22,100 KB
testcase_03 AC 62 ms
20,236 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

open System

[<EntryPoint>]
let main argv =
    let S = Console.ReadLine()

    printfn "Hello World!"
    0
0