結果

問題 No.648  お や す み 
ユーザー cidercider
提出日時 2018-02-13 13:25:48
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,253 bytes
コンパイル時間 701 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 17,088 KB
最終ジャッジ日時 2024-11-29 00:17:28
合計ジャッジ時間 171,141 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,888 KB
testcase_01 TLE -
testcase_02 AC 2 ms
13,632 KB
testcase_03 WA -
testcase_04 TLE -
testcase_05 AC 1 ms
9,892 KB
testcase_06 WA -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 1 ms
9,892 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 2 ms
13,644 KB
testcase_21 AC 2 ms
9,888 KB
testcase_22 AC 2 ms
13,644 KB
testcase_23 AC 1 ms
9,896 KB
testcase_24 AC 2 ms
13,636 KB
testcase_25 AC 2 ms
10,020 KB
testcase_26 AC 1 ms
13,640 KB
testcase_27 AC 2 ms
9,888 KB
testcase_28 AC 1 ms
13,636 KB
testcase_29 AC 1 ms
9,892 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 AC 2 ms
13,636 KB
testcase_51 AC 1 ms
10,016 KB
testcase_52 AC 1 ms
13,640 KB
testcase_53 AC 1 ms
9,896 KB
testcase_54 AC 2 ms
13,632 KB
testcase_55 AC 1 ms
10,016 KB
testcase_56 AC 1 ms
13,640 KB
testcase_57 AC 1 ms
9,888 KB
testcase_58 AC 2 ms
13,636 KB
testcase_59 AC 1 ms
10,016 KB
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 TLE -
testcase_73 TLE -
testcase_74 TLE -
testcase_75 TLE -
testcase_76 TLE -
testcase_77 TLE -
testcase_78 TLE -
testcase_79 TLE -
testcase_80 TLE -
testcase_81 TLE -
testcase_82 AC 1 ms
6,820 KB
testcase_83 AC 2 ms
16,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<functional>
#include<fstream>
#include<utility>
#include<bitset>
#include<map>
#include<deque>
#include<cmath>
#define FOR(i, a, b) for (i = a; i < b; ++i)
#define rep(N) for (int i = 0; i < N; ++i)
#define For(i, N) for (i = 0; i < N; ++i)
#define rev(N) 	for (int i = N - 1; i >= 0; --i)
#define all(v) v.begin(), v.end()
#define make(N) int N; cin >> N;
#define makel(N) ll N; cin >> N;
#define mod 1000000007
#define re return 0
#define X (x*x-1)/8

using namespace std;
using ll = long long int;
using vi = vector<int>;
using vvi = vector<vector<int>>;
using vll = vector<ll>;
using vb = vector<bool>;
using vvb = vector<vector<bool>>;
using vs = vector<string>;
using pii = pair<int, int>;
using pis = pair<int, string>;

template<typename T>
void say(T s) {
	cout << s << endl;
}

template<typename T>
void say(vector<T> s) {
	auto itr = s.begin();
	cout << *(itr++);
	while (itr != s.end()) {
		cout << " " << *(itr++);
	}
	cout << endl;
}

int main() {
	makel(n);
	ll Min = 1;
	ll Max = 5e9;
	while (Min < Max) {
		ll x = (Min + Max) / 2;
		if (X == n) {
			say("YES");
			say((x - 1) / 2);
			re;
		}
		else if (n > X) Min = x;
		else Max = x;
	}
	say("NO");
}
0