結果

問題 No.2906 Strange Online Judge
ユーザー 👑 NachiaNachia
提出日時 2024-09-07 03:26:29
言語 Text
(cat 8.3)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 54 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-09 15:05:09
合計ジャッジ時間 2,357 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 0 ms
5,376 KB
testcase_06 AC 0 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 0 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 0 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# binsearch width
# $9 = min(1e9, 2e18/K/N)
$9 = 2000000000000000000
$9 = $9 / K
$9 = $9 / N
if $9 >= 1000000000
    $9 = 1000000000
end

$8 = N * N
$7 = N * K

# $0 = floor( ( sqrt(K^2 + 4) - K ) / 2 )
#    = max x [ 0 <= x ] [ x^2 + NKx <= N^2 ]
while $9 > 1

    # $1 = (next x to test)
    $1 = $9 / 2
    $9 = $9 - $1
    $1 = $0 + $1

    # test x = $1
    # $2 = x^2 + NKx
    $2 = $1 + $7
    $2 = $2 * $1

    if $2 <= $8
        $0 = $1
    end

end

$0 = $0 + N
return $0
0