結果

問題 No.784 「,(カンマ)」
ユーザー chike_pluschike_plus
提出日時 2019-03-08 16:31:00
言語 F#
(F# 4.0)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 94 bytes
コンパイル時間 3,068 ms
コンパイル使用メモリ 156,724 KB
実行使用メモリ 24,588 KB
最終ジャッジ日時 2023-09-05 19:40:47
合計ジャッジ時間 4,681 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
22,508 KB
testcase_01 AC 62 ms
22,496 KB
testcase_02 AC 62 ms
22,496 KB
testcase_03 AC 61 ms
24,588 KB
testcase_04 AC 62 ms
24,512 KB
testcase_05 AC 62 ms
22,440 KB
testcase_06 AC 62 ms
22,352 KB
testcase_07 AC 63 ms
22,340 KB
testcase_08 AC 62 ms
22,508 KB
testcase_09 AC 61 ms
22,484 KB
testcase_10 AC 63 ms
22,516 KB
testcase_11 AC 62 ms
24,456 KB
testcase_12 AC 62 ms
22,464 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

System.Console.ReadLine()
|> int 
|> fun n -> 
    n.ToString("#,0") 
    |> stdout.WriteLine
0