結果

問題 No.648  お や す み 
ユーザー taktak
提出日時 2018-04-12 10:08:12
言語 F#
(F# 4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 632 bytes
コンパイル時間 15,034 ms
コンパイル使用メモリ 194,124 KB
実行使用メモリ 36,408 KB
最終ジャッジ日時 2024-09-13 21:35:32
合計ジャッジ時間 28,451 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
36,192 KB
testcase_01 AC 72 ms
32,380 KB
testcase_02 AC 346 ms
36,312 KB
testcase_03 AC 71 ms
32,128 KB
testcase_04 AC 72 ms
32,384 KB
testcase_05 AC 343 ms
36,308 KB
testcase_06 AC 72 ms
32,128 KB
testcase_07 AC 72 ms
32,244 KB
testcase_08 AC 72 ms
32,000 KB
testcase_09 AC 344 ms
36,296 KB
testcase_10 AC 72 ms
32,000 KB
testcase_11 AC 72 ms
32,000 KB
testcase_12 AC 73 ms
32,380 KB
testcase_13 AC 72 ms
32,256 KB
testcase_14 AC 73 ms
32,128 KB
testcase_15 AC 73 ms
32,384 KB
testcase_16 AC 73 ms
32,384 KB
testcase_17 AC 73 ms
32,128 KB
testcase_18 AC 73 ms
32,384 KB
testcase_19 AC 73 ms
32,256 KB
testcase_20 AC 343 ms
36,324 KB
testcase_21 AC 344 ms
36,312 KB
testcase_22 AC 345 ms
36,060 KB
testcase_23 AC 345 ms
36,064 KB
testcase_24 AC 343 ms
36,316 KB
testcase_25 AC 344 ms
36,320 KB
testcase_26 AC 344 ms
36,192 KB
testcase_27 AC 347 ms
36,320 KB
testcase_28 AC 344 ms
36,048 KB
testcase_29 AC 343 ms
36,192 KB
testcase_30 AC 72 ms
32,256 KB
testcase_31 AC 72 ms
32,252 KB
testcase_32 AC 73 ms
32,000 KB
testcase_33 AC 73 ms
32,384 KB
testcase_34 AC 73 ms
32,256 KB
testcase_35 AC 73 ms
32,128 KB
testcase_36 AC 73 ms
32,256 KB
testcase_37 AC 73 ms
32,384 KB
testcase_38 AC 73 ms
32,512 KB
testcase_39 AC 72 ms
32,256 KB
testcase_40 AC 71 ms
32,116 KB
testcase_41 AC 71 ms
32,256 KB
testcase_42 AC 72 ms
32,384 KB
testcase_43 AC 72 ms
32,128 KB
testcase_44 AC 73 ms
32,256 KB
testcase_45 AC 72 ms
32,348 KB
testcase_46 AC 71 ms
32,256 KB
testcase_47 AC 71 ms
32,396 KB
testcase_48 AC 73 ms
32,488 KB
testcase_49 AC 72 ms
32,256 KB
testcase_50 AC 343 ms
36,292 KB
testcase_51 AC 344 ms
36,192 KB
testcase_52 AC 343 ms
36,068 KB
testcase_53 AC 343 ms
36,324 KB
testcase_54 AC 341 ms
36,060 KB
testcase_55 AC 345 ms
36,300 KB
testcase_56 AC 346 ms
36,256 KB
testcase_57 AC 344 ms
36,060 KB
testcase_58 AC 344 ms
36,312 KB
testcase_59 AC 343 ms
36,316 KB
testcase_60 AC 72 ms
32,348 KB
testcase_61 AC 72 ms
32,384 KB
testcase_62 AC 72 ms
32,212 KB
testcase_63 AC 72 ms
32,372 KB
testcase_64 AC 72 ms
32,384 KB
testcase_65 AC 73 ms
32,000 KB
testcase_66 AC 72 ms
32,000 KB
testcase_67 AC 72 ms
32,384 KB
testcase_68 AC 73 ms
32,256 KB
testcase_69 AC 72 ms
32,256 KB
testcase_70 AC 72 ms
32,244 KB
testcase_71 AC 73 ms
32,384 KB
testcase_72 AC 72 ms
32,256 KB
testcase_73 AC 73 ms
32,384 KB
testcase_74 AC 72 ms
32,384 KB
testcase_75 AC 72 ms
32,348 KB
testcase_76 AC 71 ms
32,256 KB
testcase_77 AC 342 ms
36,064 KB
testcase_78 AC 343 ms
36,184 KB
testcase_79 AC 346 ms
36,064 KB
testcase_80 AC 345 ms
36,272 KB
testcase_81 AC 346 ms
36,408 KB
testcase_82 WA -
testcase_83 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (366 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 #

let rec sqrt n guess =
    let curGuess =
        match guess with
        | None    -> n / 2m
        | Some(x) -> x
    let res = n / curGuess
    let ave = (curGuess + res) / 2m
    if ave = curGuess then ave
    else sqrt n (Some(ave))

let isInt (n:decimal) =
    let str = n.ToString().Split('.')
    str.Length > 1 &&
    str.[1].ToCharArray() |> Array.forall(fun x -> x ='0')

let isValid n =
    let f n = ((sqrt (8m * n + 1m) None )-1m)/2m
    let res = f n

    if res |> isInt then
        printfn "YES"
        printfn "%i" <| (int res)
    else 
        printfn "NO"

let n = stdin.ReadLine() |> decimal

n |> isValid
0