結果

問題 No.2177 Recurring ab
ユーザー umezo
提出日時 2023-01-06 21:53:39
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 2,132 ms
コンパイル使用メモリ 193,192 KB
最終ジャッジ日時 2025-02-09 23:51:55
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

ll sqr(ll x){
  ll tmp=sqrt(x);
  if((tmp+1)<=x/(tmp+1)) return tmp+1;
  if(tmp<=x/tmp) return tmp;
  return tmp-1;
}
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  ll n;
  cin>>n;
  ll ans=0;
  for(int a=0;a<10;a++){
    for(int b=0;b<10;b++){
      if(a==b) continue;
      ll s=sqr(a*a*n*n+4+4*b*n);
      ll tmp=(a*n+s)/2;
      if(tmp<=max(a,b)) continue;
      ans+=tmp-max(a,b);
      if(s*s==a*a*n*n+4+4*b*n) ans--;
    }
  }
  cout<<ans<<endl;
  
  return 0;
}
0