結果

問題 No.9000 Hello World! (テスト用)
ユーザー ヒッキープログラミングするスレヒッキープログラミングするスレ
提出日時 2016-08-12 18:52:41
言語 F#
(F# 4.0)
結果
AC  
実行時間 67 ms / 5,000 ms
コード長 87 bytes
コンパイル時間 5,003 ms
コンパイル使用メモリ 149,108 KB
実行使用メモリ 22,700 KB
最終ジャッジ日時 2023-08-26 13:59:30
合計ジャッジ時間 3,228 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

let output msg = printfn "%s" msg

let helloworld = "Hello World!"

output helloworld
0