結果
| 問題 |
No.648 お や す み
|
| コンテスト | |
| ユーザー |
dnish
|
| 提出日時 | 2018-03-06 14:12:10 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 884 bytes |
| コンパイル時間 | 792 ms |
| コンパイル使用メモリ | 82,044 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-13 21:14:54 |
| 合計ジャッジ時間 | 2,747 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 84 |
ソースコード
#include <algorithm>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <deque>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <utility>
#include <vector>
#define p(s) cout<<(s)<<endl
#define REP(i,n,N) for(int i=n;i<N;i++)
#define RREP(i,n,N) for(int i=N-1;i>=n;i--)
#define CK(n,a,b) ((a)<=(n)&&(n)<(b))
#define F first
#define S second
typedef long long ll;
using namespace std;
const ll inf = 1e10;
ll n;
bool C(ll mid){//index
return mid*(mid+1)/2 <= n;
}
ll nibutan(){
ll lb=-1,ub=2*1e9;
while(ub-lb>1){
int mid=(lb+ub)/2;
if(C(mid)) lb=mid;
else ub=mid;
//cout<<lb<<" "<<ub<<endl;
}
return lb;
}
int main(){
cin>>n;
ll ans=nibutan();
if(ans*(ans+1)/2!=n) p("NO");
else{
p("YES");
p(ans);
}
return 0;
}
dnish