結果

問題 No.1162 Many Quotients hard
ユーザー 蜜蜂
提出日時 2020-08-11 20:04:29
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 328 bytes
コンパイル時間 1,684 ms
コンパイル使用メモリ 166,348 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-09 18:22:03
合計ジャッジ時間 2,806 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 41 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <bits/stdc++.h>
#define ll long long
using namespace std;

int main() {
    ll N;
    cin>>N;
    long double x=sqrt(N);
    ll A;
    if(x*x<=N){
        A=x;
    }
    else{
        A=x-1;
    }
    cout<<A+N/(A+1)<<endl;
}
0