結果

問題 No.1088 A+B Problem
ユーザー taktak
提出日時 2020-06-25 12:18:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 340 ms / 2,000 ms
コード長 123 bytes
コンパイル時間 7,294 ms
コンパイル使用メモリ 184,752 KB
実行使用メモリ 35,000 KB
最終ジャッジ日時 2024-07-03 20:52:31
合計ジャッジ時間 12,429 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
34,996 KB
testcase_01 AC 336 ms
34,144 KB
testcase_02 AC 340 ms
34,732 KB
testcase_03 AC 335 ms
34,492 KB
testcase_04 AC 338 ms
34,324 KB
testcase_05 AC 335 ms
34,236 KB
testcase_06 AC 336 ms
35,000 KB
testcase_07 AC 336 ms
34,052 KB
testcase_08 AC 334 ms
34,448 KB
testcase_09 AC 335 ms
34,604 KB
testcase_10 AC 338 ms
34,872 KB
testcase_11 AC 335 ms
33,808 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (265 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System

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

printfn "%i" <| A + B
0