結果

問題 No.648  お や す み 
ユーザー misora192
提出日時 2020-05-19 08:29:38
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 1,505 ms
コンパイル使用メモリ 167,260 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-01 22:30:31
合計ジャッジ時間 3,102 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 84
権限があれば一括ダウンロードができます

ソースコード

diff #

#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