結果
問題 | No.1047 Zero (Novice) |
ユーザー | manaita |
提出日時 | 2020-05-08 21:47:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 2,201 bytes |
コンパイル時間 | 1,018 ms |
コンパイル使用メモリ | 100,252 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-04 00:26:13 |
合計ジャッジ時間 | 1,749 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,940 KB |
ソースコード
#include <iostream> #include <iterator> #include <vector> #include <cmath> #include <cstdlib> #include <algorithm> #include <string> #include <numeric> #include <iomanip> #include <limits> #include <set> #include <map> #include <type_traits> #include <cstdint> #include <queue> #define _USE_MATH_DEFINES #include <math.h> typedef long long ll; using namespace std; //素因数分解 void factoring(ll n, map<ll, ll>& mp) { for (ll i = 2; i * i <= n; i++) { while (n % i == 0) { mp[i]++; n /= i; } } if (n != 1) mp[n]++; } //絶対値 template<class T, class U = std::make_unsigned_t<T>> U SafeAbs( T x ) { return x < 0 ? -static_cast<uintmax_t>(x) : x; } //最大・最小 template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } //xのn乗 ll mod_pow(ll x, ll n, ll mod) { ll res = 1; while (n > 0) { if (n & 1) res = res * x % mod; x = x * x % mod; n >>= 1; } return res; } //xの逆元 ll mod_inv(ll x, ll mod) {//O(log(mod)) return mod_pow(x, mod - 2, mod); } //nCr ll ncr(ll n, ll r, ll mod){ ll res=1; ll num=1,den=1; for(ll i=n;i>=n-r+1;i--){ (den*=i)%=mod; } for(ll i=1;i<=r;i++){ (num*=i)%=mod; } res=den*mod_inv(num,mod); return res%mod; } //二分探索 bool isOk(ll index, ll key,vector<ll> &a){ if(a[index]>key){ return true; } return false; } ll bin_search(ll key, vector<ll> &a){ ll l=-1; ll r=a.size(); while(abs(r-l)>1){ ll mid = (l+r)/2; if(isOk(mid, key, a)){ r=mid; } else{ l=mid; } } return r; } /* //深さ優先探索 void dfs(vector<vector<ll>> &gra,vector<bool> &seen, ll v){ seen[v]=true; for(auto next : gra[v]){ if(seen[next]){ continue; } dfs(gra,seen,next); } } */ const ll MOD=1000000007; void solve(){ ll a,b; cin>>a>>b; if(b==0){ cout<<1<<endl; } else{ if(a>=0){ cout<<-1<<endl; } else{ if(a==-1){ cout<<2<<endl; } else{ cout<<-1<<endl; } } } } int main(){ solve(); return 0; }