結果

問題 No.2177 Recurring ab
ユーザー _yurimoir_yurimoir
提出日時 2023-01-06 22:31:21
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 545 bytes
コンパイル時間 3,175 ms
コンパイル使用メモリ 243,312 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-07 22:11:24
合計ジャッジ時間 3,630 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
int32_t main(){
    double n;
    cin>>n;
    int ans=0;
    for(int i=0;i<10;i++){
        for(int j=0;j<10;j++){
            if(i==j)continue;
            int limit=max(i,j);
            double p1,p2;
            p1=(n*i+sqrt(n*n*i*i+4*(1+n*j)))/2.0;
            p2=(n*i-sqrt(n*n*i*i+4*(1+n*j)))/2.0;
            int x1,x2;
            x1=(int)p1;
            x2=-(int)(-p2);
            if(x1<limit)continue;
            ans+=x1-limit;
        }
    }
    cout<<ans<<endl;
}
0