結果

問題 No.780 オフ会
ユーザー chikepluschikeplus
提出日時 2019-01-24 12:44:49
言語 F#
(F# 4.0)
結果
AC  
実行時間 338 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 10,719 ms
コンパイル使用メモリ 198,600 KB
実行使用メモリ 35,376 KB
最終ジャッジ日時 2024-09-16 04:37:05
合計ジャッジ時間 16,600 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 329 ms
34,872 KB
testcase_01 AC 328 ms
35,260 KB
testcase_02 AC 330 ms
34,996 KB
testcase_03 AC 336 ms
35,136 KB
testcase_04 AC 331 ms
34,572 KB
testcase_05 AC 332 ms
34,740 KB
testcase_06 AC 331 ms
34,996 KB
testcase_07 AC 330 ms
35,120 KB
testcase_08 AC 332 ms
35,124 KB
testcase_09 AC 331 ms
35,248 KB
testcase_10 AC 332 ms
35,256 KB
testcase_11 AC 331 ms
34,752 KB
testcase_12 AC 332 ms
34,836 KB
testcase_13 AC 330 ms
34,704 KB
testcase_14 AC 325 ms
34,996 KB
testcase_15 AC 328 ms
34,876 KB
testcase_16 AC 330 ms
35,376 KB
testcase_17 AC 333 ms
35,004 KB
testcase_18 AC 331 ms
35,252 KB
testcase_19 AC 332 ms
35,000 KB
testcase_20 AC 333 ms
35,128 KB
testcase_21 AC 338 ms
35,124 KB
testcase_22 AC 335 ms
35,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (428 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(7,5): warning FS0026: この規則には一致しません [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let inputs = System.Console.ReadLine().Split(' ')
let args = seq{ for str in inputs do yield int(str) }

let matchPair a  b =
  match a,b with
  | a,b   -> (a + 1) - b
  | _,_   -> 0

let res = matchPair (Seq.head args) (Seq.item 1 args)
printfn "%s" (if res <= 0 then "YES" else "NO")
printfn "%i" (System.Math.Abs(res))
0