結果

問題 No.780 オフ会
ユーザー chike_pluschike_plus
提出日時 2019-03-08 19:48:07
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 219 bytes
コンパイル時間 6,271 ms
コンパイル使用メモリ 185,976 KB
実行使用メモリ 30,964 KB
最終ジャッジ日時 2024-06-23 15:04:43
合計ジャッジ時間 8,355 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
29,184 KB
testcase_01 AC 50 ms
29,436 KB
testcase_02 AC 50 ms
29,148 KB
testcase_03 AC 49 ms
29,312 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 52 ms
29,556 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 48 ms
29,172 KB
testcase_10 AC 49 ms
29,184 KB
testcase_11 WA -
testcase_12 AC 50 ms
29,172 KB
testcase_13 AC 48 ms
28,928 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 49 ms
29,172 KB
testcase_17 AC 51 ms
28,928 KB
testcase_18 WA -
testcase_19 AC 49 ms
29,312 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (226 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 = Console.ReadLine().Split(' ') 
            |> (fun x -> int x.[0] , int x.[1] )

match A < B with
| true -> Console.WriteLine "YES"
| false-> Console.WriteLine "NO"
Console.WriteLine ((A+1) - B)
0