結果

問題 No.2177 Recurring ab
ユーザー MasKoaTSMasKoaTS
提出日時 2024-12-02 19:59:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 837 bytes
コンパイル時間 2,203 ms
コンパイル使用メモリ 200,176 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-02 19:59:06
合計ジャッジ時間 3,108 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;


bool func(ll n, ll p, ll a, ll b){
    return (p * p < n * (p * a + b) + 1);
}


int main(){
    ll n;   cin >> n;

    ll ans = 0;
    for(ll a = 0; a < 10; ++a){
        for(ll b = 0; b < 10; ++b){
            if(a == b){
                continue;
            }
            ll p_min = max(a, b) + 1;
            if(!func(n, p_min, a, b)){
                continue;
            }
            ll ok = p_min, ng = 1000000001;
            while(abs(ok - ng) > 1){
                ll mid = (ok + ng) / 2;
                if(func(n, mid, a, b)){
                    ok = mid;
                }
                else{
                    ng = mid;
                }
            }
            ans += ok - p_min + 1;
        }
    }
    cout << ans << endl;

    return 0;
}
0