結果

問題 No.353 ヘイトプラス
ユーザー hum_ophum_op
提出日時 2016-04-03 09:53:31
言語 F#
(F# 4.0)
結果
AC  
実行時間 298 ms / 1,000 ms
コード長 189 bytes
コンパイル時間 12,246 ms
コンパイル使用メモリ 186,172 KB
実行使用メモリ 35,752 KB
最終ジャッジ日時 2024-06-29 13:28:53
合計ジャッジ時間 15,850 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
35,372 KB
testcase_01 AC 294 ms
35,208 KB
testcase_02 AC 297 ms
35,624 KB
testcase_03 AC 295 ms
35,752 KB
testcase_04 AC 293 ms
35,360 KB
testcase_05 AC 293 ms
35,716 KB
testcase_06 AC 298 ms
35,624 KB
testcase_07 AC 296 ms
35,496 KB
testcase_08 AC 297 ms
35,372 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (519 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 No353 () =
    let IN = stdin.ReadLine().Split(' ')
    let A, B = Int32.Parse IN.[0], Int32.Parse IN.[1]

    let res = A - (-1 * B)
    printfn "%d" res
    ()

No353 ()
0