結果

問題 No.353 ヘイトプラス
ユーザー hum_ophum_op
提出日時 2016-04-03 09:53:31
言語 F#
(F# 4.0)
結果
AC  
実行時間 82 ms / 1,000 ms
コード長 189 bytes
コンパイル時間 5,434 ms
コンパイル使用メモリ 161,272 KB
実行使用メモリ 24,968 KB
最終ジャッジ日時 2023-09-12 00:15:21
合計ジャッジ時間 6,987 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
22,872 KB
testcase_01 AC 81 ms
24,780 KB
testcase_02 AC 82 ms
24,816 KB
testcase_03 AC 81 ms
22,896 KB
testcase_04 AC 80 ms
20,668 KB
testcase_05 AC 79 ms
22,864 KB
testcase_06 AC 79 ms
24,868 KB
testcase_07 AC 81 ms
24,968 KB
testcase_08 AC 80 ms
22,764 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 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