結果

問題 No.648  お や す み 
ユーザー focus
提出日時 2018-02-13 21:12:14
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 387 bytes
コンパイル時間 761 ms
コンパイル使用メモリ 64,492 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-13 21:09:12
合計ジャッジ時間 2,474 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 84
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<cstdio>
#include<cmath>
using namespace std;

int main(){
    unsigned long long N,ans,i;
    cin >> N;
    ans = (sqrt(8*N+1)-1)/2;
    for(i=ans;i<ans+50;i++){
        if(ans*(ans+1)==2*N&&ans>0){
            cout << "YES\n" << ans << endl;
            return 0;
        }
    }
    cout << "NO" << endl;
    return 0;
}
0