結果

問題 No.353 ヘイトプラス
ユーザー taktak
提出日時 2018-08-02 03:58:30
言語 F#
(F# 4.0)
結果
AC  
実行時間 77 ms / 1,000 ms
コード長 142 bytes
コンパイル時間 4,099 ms
コンパイル使用メモリ 161,368 KB
実行使用メモリ 25,012 KB
最終ジャッジ日時 2023-09-17 00:06:20
合計ジャッジ時間 5,540 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
24,940 KB
testcase_01 AC 75 ms
23,088 KB
testcase_02 AC 73 ms
22,972 KB
testcase_03 AC 77 ms
22,840 KB
testcase_04 AC 76 ms
23,004 KB
testcase_05 AC 74 ms
25,012 KB
testcase_06 AC 76 ms
20,880 KB
testcase_07 AC 75 ms
22,916 KB
testcase_08 AC 75 ms
24,932 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

let A, B = 
    let t = stdin.ReadLine().Split() |> Array.map decimal
    t.[0], t.[1]
    
System.Decimal.Add(A, B)
|> (int >> printfn "%i") 
0