結果

問題 No.648  お や す み 
ユーザー wotsushiwotsushi
提出日時 2018-07-30 20:09:21
言語 Elixir
(1.16.2)
結果
AC  
実行時間 613 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 1,637 ms
コンパイル使用メモリ 61,564 KB
実行使用メモリ 55,236 KB
最終ジャッジ日時 2024-06-09 22:10:50
合計ジャッジ時間 50,269 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 534 ms
54,120 KB
testcase_01 AC 542 ms
54,252 KB
testcase_02 AC 556 ms
53,812 KB
testcase_03 AC 530 ms
53,856 KB
testcase_04 AC 523 ms
53,860 KB
testcase_05 AC 549 ms
54,392 KB
testcase_06 AC 538 ms
53,996 KB
testcase_07 AC 538 ms
54,916 KB
testcase_08 AC 530 ms
54,308 KB
testcase_09 AC 559 ms
54,124 KB
testcase_10 AC 537 ms
54,352 KB
testcase_11 AC 547 ms
54,792 KB
testcase_12 AC 541 ms
53,816 KB
testcase_13 AC 559 ms
53,820 KB
testcase_14 AC 526 ms
53,860 KB
testcase_15 AC 538 ms
54,368 KB
testcase_16 AC 530 ms
54,520 KB
testcase_17 AC 546 ms
54,340 KB
testcase_18 AC 533 ms
54,336 KB
testcase_19 AC 581 ms
54,132 KB
testcase_20 AC 553 ms
54,476 KB
testcase_21 AC 528 ms
55,148 KB
testcase_22 AC 539 ms
53,996 KB
testcase_23 AC 541 ms
53,984 KB
testcase_24 AC 537 ms
53,988 KB
testcase_25 AC 548 ms
54,124 KB
testcase_26 AC 553 ms
53,860 KB
testcase_27 AC 540 ms
54,620 KB
testcase_28 AC 547 ms
54,256 KB
testcase_29 AC 551 ms
54,324 KB
testcase_30 AC 564 ms
54,136 KB
testcase_31 AC 536 ms
53,872 KB
testcase_32 AC 547 ms
54,408 KB
testcase_33 AC 540 ms
54,104 KB
testcase_34 AC 573 ms
54,656 KB
testcase_35 AC 542 ms
54,788 KB
testcase_36 AC 551 ms
54,408 KB
testcase_37 AC 540 ms
53,936 KB
testcase_38 AC 559 ms
54,436 KB
testcase_39 AC 540 ms
55,136 KB
testcase_40 AC 556 ms
54,872 KB
testcase_41 AC 539 ms
53,876 KB
testcase_42 AC 557 ms
54,468 KB
testcase_43 AC 540 ms
53,752 KB
testcase_44 AC 540 ms
55,044 KB
testcase_45 AC 561 ms
54,220 KB
testcase_46 AC 568 ms
53,872 KB
testcase_47 AC 541 ms
54,936 KB
testcase_48 AC 613 ms
54,792 KB
testcase_49 AC 548 ms
54,580 KB
testcase_50 AC 546 ms
53,808 KB
testcase_51 AC 551 ms
54,604 KB
testcase_52 AC 557 ms
53,680 KB
testcase_53 AC 555 ms
53,992 KB
testcase_54 AC 541 ms
54,268 KB
testcase_55 AC 554 ms
53,944 KB
testcase_56 AC 557 ms
54,004 KB
testcase_57 AC 565 ms
54,208 KB
testcase_58 AC 569 ms
54,292 KB
testcase_59 AC 556 ms
54,560 KB
testcase_60 AC 549 ms
55,024 KB
testcase_61 AC 556 ms
54,124 KB
testcase_62 AC 554 ms
55,208 KB
testcase_63 AC 548 ms
54,872 KB
testcase_64 AC 551 ms
53,868 KB
testcase_65 AC 567 ms
54,216 KB
testcase_66 AC 574 ms
54,288 KB
testcase_67 AC 544 ms
54,608 KB
testcase_68 AC 537 ms
54,120 KB
testcase_69 AC 543 ms
55,236 KB
testcase_70 AC 531 ms
54,052 KB
testcase_71 AC 550 ms
53,728 KB
testcase_72 AC 560 ms
54,612 KB
testcase_73 AC 545 ms
53,732 KB
testcase_74 AC 547 ms
54,592 KB
testcase_75 AC 547 ms
54,196 KB
testcase_76 AC 558 ms
54,624 KB
testcase_77 AC 549 ms
53,852 KB
testcase_78 AC 555 ms
54,908 KB
testcase_79 AC 550 ms
54,628 KB
testcase_80 AC 564 ms
53,744 KB
testcase_81 AC 539 ms
53,672 KB
testcase_82 AC 530 ms
54,304 KB
testcase_83 AC 548 ms
54,464 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