結果

問題 No.1162 Many Quotients hard
ユーザー hiro71687k
提出日時 2024-02-12 04:17:26
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 506 bytes
コンパイル時間 3,776 ms
コンパイル使用メモリ 250,588 KB
最終ジャッジ日時 2025-02-19 05:31:57
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 38 TLE * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include<atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll mod=998244353;
ll inf=1000000000000000001;//10^17
int main(){
    ll now=1;
    ll n;
    cin >> n;
    if (n==1)
    {
        cout << 1 << endl;
        return 0;
    }
    for (ll i = 2; i >=0; i++)
    {
        now+=i/2+1;
        if (now>=n)
        {
            cout << i << endl;
            return 0;
        }
        
    }
    
}
0