結果

問題 No.648  お や す み 
ユーザー ldsybldsyb
提出日時 2018-02-09 22:33:50
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,514 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 1,527 ms
コンパイル使用メモリ 167,164 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-13 20:58:49
合計ジャッジ時間 35,526 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 84
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
	int64_t n;
	cin >> n;
	for (int64_t i = 1; i * (i + 1) / 2 <= n; i++) {
		if (i * (i + 1) / 2 == n) {
			cout << "YES" << endl;
			cout << i << endl;
			return 0;
		}
	}
	cout << "NO" << endl;
	return 0;
}
0