結果

問題 No.383 レーティング
ユーザー Michae'GonMichae'Gon
提出日時 2017-02-28 22:26:00
言語 F#
(F# 4.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 3,560 ms
コンパイル使用メモリ 163,752 KB
実行使用メモリ 24,168 KB
最終ジャッジ日時 2023-09-02 18:07:28
合計ジャッジ時間 5,469 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
22,064 KB
testcase_01 AC 61 ms
22,164 KB
testcase_02 AC 59 ms
22,096 KB
testcase_03 AC 60 ms
22,104 KB
testcase_04 AC 62 ms
24,144 KB
testcase_05 AC 59 ms
22,112 KB
testcase_06 AC 60 ms
24,168 KB
testcase_07 AC 60 ms
22,192 KB
testcase_08 AC 61 ms
20,096 KB
testcase_09 AC 59 ms
20,152 KB
testcase_10 AC 59 ms
22,132 KB
testcase_11 AC 60 ms
24,116 KB
testcase_12 AC 62 ms
20,212 KB
testcase_13 AC 61 ms
22,108 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

module Main
open System

let ab = Console.ReadLine().Split(' ')
        |> Array.map int

let x = ab.[1] - ab.[0]

if x > 0 then
    Console.Write("+")

Console.WriteLine(x)
0