結果

問題 No.648  お や す み 
コンテスト
ユーザー misora192
提出日時 2020-05-19 08:29:38
言語 C++14
(gcc 15.3.0 + boost 1.92.0 + ACL)
コンパイル:
g++-15 -O2 -lm -std=c++14 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 2,000 ms
+ 389µs
コード長 508 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 842 ms
コンパイル使用メモリ 184,860 KB
実行使用メモリ 10,044 KB
最終ジャッジ日時 2026-09-08 08:04:10
合計ジャッジ時間 4,121 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 84
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
#define rep(i,n) for(int i=(0);i<(n);i++)

using namespace std;

typedef long long ll;
typedef unsigned long long ull;

int main(){
	cin.tie(0);
	ios::sync_with_stdio(false);

	ull n;
	cin >> n;

	ull t = 8 * n + 1;
	ull s = sqrt(t);

	bool ok = false;
	for(int i = -1; i <= 1; i++){
		if((s + i) * (s + i) == t){
			s = s + i;
			ok = true;
			break;
		}
	}

	if(!ok || (s - 1) % 2 != 0){
		cout << "NO" << endl;
	}else{
		cout << "YES" << endl;
		cout << (s - 1) / 2 << endl;
	}
}
0