結果

問題 No.1088 A+B Problem
ユーザー taktak
提出日時 2020-06-25 12:18:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 123 bytes
コンパイル時間 4,713 ms
コンパイル使用メモリ 152,276 KB
実行使用メモリ 24,892 KB
最終ジャッジ日時 2023-09-16 21:53:51
合計ジャッジ時間 6,412 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
22,852 KB
testcase_01 AC 74 ms
24,796 KB
testcase_02 AC 73 ms
22,904 KB
testcase_03 AC 74 ms
22,796 KB
testcase_04 AC 75 ms
24,804 KB
testcase_05 AC 77 ms
24,892 KB
testcase_06 AC 78 ms
22,748 KB
testcase_07 AC 79 ms
22,800 KB
testcase_08 AC 78 ms
22,860 KB
testcase_09 AC 75 ms
22,716 KB
testcase_10 AC 75 ms
22,892 KB
testcase_11 AC 76 ms
24,756 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

open System

let (A, B) = 
    let t = Console.ReadLine().Split() |> Array.map int 
    t.[0], t.[1]

printfn "%i" <| A + B
0