結果

問題 No.648  お や す み 
ユーザー wotsushiwotsushi
提出日時 2018-07-30 20:09:21
言語 Elixir
(1.18.1)
結果
AC  
実行時間 582 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 1,068 ms
コンパイル使用メモリ 62,824 KB
実行使用メモリ 56,684 KB
最終ジャッジ日時 2024-12-31 02:17:54
合計ジャッジ時間 50,040 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 523 ms
54,552 KB
testcase_01 AC 520 ms
54,288 KB
testcase_02 AC 522 ms
54,000 KB
testcase_03 AC 521 ms
54,784 KB
testcase_04 AC 519 ms
54,136 KB
testcase_05 AC 527 ms
54,296 KB
testcase_06 AC 522 ms
54,564 KB
testcase_07 AC 522 ms
53,860 KB
testcase_08 AC 526 ms
54,412 KB
testcase_09 AC 523 ms
53,880 KB
testcase_10 AC 523 ms
55,480 KB
testcase_11 AC 526 ms
54,308 KB
testcase_12 AC 524 ms
53,912 KB
testcase_13 AC 522 ms
53,984 KB
testcase_14 AC 520 ms
53,832 KB
testcase_15 AC 528 ms
54,500 KB
testcase_16 AC 523 ms
54,044 KB
testcase_17 AC 525 ms
54,296 KB
testcase_18 AC 525 ms
54,604 KB
testcase_19 AC 530 ms
54,348 KB
testcase_20 AC 521 ms
54,468 KB
testcase_21 AC 528 ms
54,588 KB
testcase_22 AC 532 ms
53,736 KB
testcase_23 AC 526 ms
53,780 KB
testcase_24 AC 528 ms
53,936 KB
testcase_25 AC 527 ms
54,104 KB
testcase_26 AC 528 ms
53,736 KB
testcase_27 AC 525 ms
54,556 KB
testcase_28 AC 524 ms
53,900 KB
testcase_29 AC 521 ms
54,632 KB
testcase_30 AC 555 ms
55,216 KB
testcase_31 AC 562 ms
53,608 KB
testcase_32 AC 552 ms
53,720 KB
testcase_33 AC 517 ms
54,316 KB
testcase_34 AC 523 ms
53,896 KB
testcase_35 AC 533 ms
53,728 KB
testcase_36 AC 545 ms
53,772 KB
testcase_37 AC 534 ms
54,324 KB
testcase_38 AC 532 ms
54,116 KB
testcase_39 AC 530 ms
54,756 KB
testcase_40 AC 533 ms
54,212 KB
testcase_41 AC 524 ms
54,616 KB
testcase_42 AC 525 ms
54,852 KB
testcase_43 AC 526 ms
54,632 KB
testcase_44 AC 568 ms
53,912 KB
testcase_45 AC 534 ms
54,512 KB
testcase_46 AC 527 ms
54,776 KB
testcase_47 AC 574 ms
54,092 KB
testcase_48 AC 570 ms
54,104 KB
testcase_49 AC 574 ms
54,296 KB
testcase_50 AC 582 ms
54,156 KB
testcase_51 AC 582 ms
54,128 KB
testcase_52 AC 575 ms
56,684 KB
testcase_53 AC 579 ms
54,076 KB
testcase_54 AC 577 ms
54,204 KB
testcase_55 AC 571 ms
53,912 KB
testcase_56 AC 569 ms
54,832 KB
testcase_57 AC 572 ms
54,344 KB
testcase_58 AC 579 ms
54,744 KB
testcase_59 AC 573 ms
54,532 KB
testcase_60 AC 574 ms
54,120 KB
testcase_61 AC 562 ms
53,944 KB
testcase_62 AC 563 ms
54,252 KB
testcase_63 AC 574 ms
54,072 KB
testcase_64 AC 562 ms
53,732 KB
testcase_65 AC 564 ms
53,992 KB
testcase_66 AC 563 ms
54,108 KB
testcase_67 AC 562 ms
53,812 KB
testcase_68 AC 565 ms
56,152 KB
testcase_69 AC 572 ms
54,164 KB
testcase_70 AC 566 ms
54,096 KB
testcase_71 AC 574 ms
53,740 KB
testcase_72 AC 576 ms
54,016 KB
testcase_73 AC 567 ms
53,912 KB
testcase_74 AC 572 ms
53,984 KB
testcase_75 AC 576 ms
54,176 KB
testcase_76 AC 577 ms
54,132 KB
testcase_77 AC 577 ms
53,844 KB
testcase_78 AC 579 ms
54,152 KB
testcase_79 AC 573 ms
53,956 KB
testcase_80 AC 574 ms
54,324 KB
testcase_81 AC 578 ms
54,620 KB
testcase_82 AC 575 ms
53,748 KB
testcase_83 AC 571 ms
54,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  defp bis(_, l, h) when l > h, do: :ng
  defp bis(n, l, h) do
    x = div(h + l, 2)
    s = div(x * (x + 1), 2)
    cond do
      s < n
        -> bis(n, x + 1, h)
      s == n
        -> x
      s > n
        -> bis(n, l, x - 1)
    end
  end

  def main do
    n = IO.gets("") |> String.trim |> String.to_integer

    ans = case bis(n, 1, n) do
      :ng -> "NO"
      m -> "YES\n#{m}"
    end

    IO.puts ans
  end
end
0