結果
問題 | No.531 エヌスクミ島の平和協定 |
ユーザー |
|
提出日時 | 2017-06-23 22:50:07 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,259 bytes |
コンパイル時間 | 919 ms |
コンパイル使用メモリ | 110,392 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-05 11:46:57 |
合計ジャッジ時間 | 1,801 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 33 WA * 4 |
ソースコード
#include "iostream"#include "climits"#include "list"#include "queue"#include "stack"#include "set"#include "functional"#include "algorithm"#include "math.h"#include "utility"#include "string"#include "map"#include "unordered_map"#include "iomanip"#include "random"using namespace std;const long long int MOD = 1000000007;list<long long int> Prime(int M) {list<long long int>P;P.push_back(2);P.push_back(3);for (int i = 5; i <= M; i += 6) {bool flag = true;for (auto j : P) {if (i%j == 0) {flag = false;break;}}if (flag)P.push_back(i);flag = true;for (auto j : P) {if ((i + 2) % j == 0) {flag = false;break;}}if (flag)P.push_back(i + 2);}return P;}long long int power(long long int x, long long int n, long long int M) {long long int tmp = 1;if (n > 0) {tmp = power(x, n / 2, M);if (n % 2 == 0) tmp = (tmp*tmp) % M;else tmp = (((tmp*tmp) % M)*x) % M;}return tmp;}long long int N, M, K, Q, W, H;long long int ans;int main() {ios::sync_with_stdio(false);cin >> N >> M;if (N <= M) {cout << "1\n";return 0;}if (N % 2) {cout << "-1\n";return 0;}if (N > M * 2) {cout << "-1\n";return 0;}cout << "1\n";return 0;}