結果

問題 No.3033 Test of Russian
ユーザー taktak
提出日時 2018-04-03 17:45:50
言語 F#
(.NET 7)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 5,115 ms
コンパイル使用メモリ 161,052 KB
実行使用メモリ 24,664 KB
最終ジャッジ日時 2023-09-08 15:29:53
合計ジャッジ時間 6,549 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
20,632 KB
testcase_01 AC 79 ms
24,664 KB
testcase_02 AC 80 ms
24,568 KB
testcase_03 AC 80 ms
22,644 KB
testcase_04 AC 80 ms
22,616 KB
testcase_05 AC 79 ms
24,632 KB
testcase_06 AC 79 ms
22,712 KB
testcase_07 AC 80 ms
22,648 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 read() = let t = Console.ReadLine().Split()
                     |> Array.map (int)
             in t.[0],t.[1],t.[2]

let N,M,X = read()

M+X >= N+3
|> function | true -> "YES"  | _ -> "NO"
|> printfn "%s"
0