結果

問題 No.2420 Simple Problem
ユーザー shop_oneshop_one
提出日時 2023-08-12 14:21:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,737 ms / 2,000 ms
コード長 1,133 bytes
コンパイル時間 1,516 ms
コンパイル使用メモリ 136,188 KB
実行使用メモリ 40,448 KB
最終ジャッジ日時 2024-12-20 10:34:01
合計ジャッジ時間 50,069 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
5,504 KB
testcase_01 AC 636 ms
19,584 KB
testcase_02 AC 14 ms
5,760 KB
testcase_03 AC 223 ms
10,496 KB
testcase_04 AC 1,317 ms
33,280 KB
testcase_05 AC 811 ms
23,040 KB
testcase_06 AC 1,669 ms
40,320 KB
testcase_07 AC 1,691 ms
40,448 KB
testcase_08 AC 1,651 ms
40,448 KB
testcase_09 AC 1,667 ms
40,448 KB
testcase_10 AC 1,700 ms
40,448 KB
testcase_11 AC 1,688 ms
40,320 KB
testcase_12 AC 1,709 ms
40,448 KB
testcase_13 AC 1,702 ms
40,448 KB
testcase_14 AC 1,695 ms
40,320 KB
testcase_15 AC 1,717 ms
40,448 KB
testcase_16 AC 1,707 ms
40,320 KB
testcase_17 AC 1,722 ms
40,320 KB
testcase_18 AC 1,719 ms
40,320 KB
testcase_19 AC 1,716 ms
40,448 KB
testcase_20 AC 1,737 ms
40,448 KB
testcase_21 AC 1,727 ms
40,448 KB
testcase_22 AC 1,674 ms
40,320 KB
testcase_23 AC 1,706 ms
40,320 KB
testcase_24 AC 1,706 ms
40,448 KB
testcase_25 AC 1,715 ms
40,448 KB
testcase_26 AC 9 ms
5,632 KB
testcase_27 AC 1,018 ms
26,752 KB
testcase_28 AC 1,002 ms
26,752 KB
testcase_29 AC 1,012 ms
26,752 KB
testcase_30 AC 1,088 ms
26,752 KB
testcase_31 AC 997 ms
26,880 KB
testcase_32 AC 10 ms
5,632 KB
testcase_33 AC 642 ms
19,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// I SELL YOU...! 
#include<iostream>
#include<vector>
#include<algorithm>
#include<functional>
#include<queue>
#include<chrono>
#include<iomanip>
#include<cmath>
#include<map>
#include<set>
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
using TP = tuple<ll,ll,ll>;
void init_io(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  cout << fixed << setprecision(18);
}
map<ll, double> mp;
double calc(ll v) {
  auto itr = mp.find(v);
  if (itr != mp.end()) {
    return itr->second;
  }
  double s = 1, e = v;
  for (int i=0;i<100;i++) {
    double h = (s+e)/2;
    if (h*h < v) {
      s = h;
    } else {
      e = h;
    }
  }
  mp[v] = (s+e)/2;
  return (s+e)/2;
}
signed main(){
  const ll MAX = 1e9+2;
  map<ll,ll> p;
  for (ll i=1;i*i<=MAX;i++) {
    p[i*i] = i;
  }
  init_io();
  ll n;
  cin >> n;
  vector<ll> a(n), b(n);
  for (int i=0;i<n;i++){
    cin >> a[i] >> b[i];
    ll ans;
    auto ia = p.find(a[i]), ib = p.find(b[i]);
    if (ia != p.end() && ib != p.end()) {
      ans = ia->second + ib->second + 1;
    } else {
      ans = ceil(calc(a[i]) + calc(b[i]));
    }
    cout << ans << endl;
  }
}
0