結果

問題 No.1895 Mod 2
ユーザー simansiman
提出日時 2022-06-01 03:30:05
言語 Ruby
(3.3.0)
結果
AC  
実行時間 340 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-09-21 01:26:45
合計ジャッジ時間 5,284 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 333 ms
12,416 KB
testcase_02 AC 336 ms
12,416 KB
testcase_03 AC 334 ms
12,288 KB
testcase_04 AC 331 ms
12,160 KB
testcase_05 AC 333 ms
12,288 KB
testcase_06 AC 335 ms
12,288 KB
testcase_07 AC 331 ms
12,288 KB
testcase_08 AC 334 ms
12,416 KB
testcase_09 AC 332 ms
12,160 KB
testcase_10 AC 333 ms
12,288 KB
testcase_11 AC 340 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

T = gets.to_i

def f(x)
  ok = 0
  ng = 10 ** 15

  while (ok - ng).abs >= 2
    v = (ok + ng) / 2

    if v * v <= x
      ok = v
    else
      ng = v
    end
  end

  ok
end

def g(x)
  ok = 0
  ng = 10 ** 15

  while (ok - ng).abs >= 2
    v = (ok + ng) / 2

    if 2 * v * v <= x
      ok = v
    else
      ng = v
    end
  end

  ok
end

T.times do
  l, r = gets.split.map(&:to_i)

  v1 = f(l - 1)
  v2 = f(r)
  v3 = g(l - 1)
  v4 = g(r)

  puts ((v2 + v4) - (v1 + v3)) % 2
end
0