結果
問題 | No.531 エヌスクミ島の平和協定 |
ユーザー | ukuku09 |
提出日時 | 2017-06-23 23:00:06 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 822 bytes |
コンパイル時間 | 1,152 ms |
コンパイル使用メモリ | 158,984 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-19 16:20:57 |
合計ジャッジ時間 | 2,173 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 37 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long #define all(v) (v).begin(), (v).end() #define resz(v, ...) (v).clear(), (v).resize(__VA_ARGS__) #define reps(i, m, n) for(int i = (int)(m); i < (int)(n); i++) #define rep(i, n) reps(i, 0, n) template<class T1, class T2> void chmin(T1 &a, T2 b){if(a>b)a=b;} template<class T1, class T2> void chmax(T1 &a, T2 b){if(a<b)a=b;} typedef pair<int, int> Pi; typedef tuple<int, int, int> Ti; typedef vector<int> vint; const int inf = 1LL << 55; const int mod = 1e9 + 7; signed main() { cin.tie(0); ios_base::sync_with_stdio(0); cout << fixed << setprecision(12); int n, m; cin >> n >> m; if(n%2 == 0) { if(n <= m) cout << 1 << endl; else cout << (n/2 <= m ? 2 : -1) << endl; } else cout << (n <= m ? 1 : -1) << endl; return 0; }