結果
| 問題 | 
                            No.531 エヌスクミ島の平和協定
                             | 
                    
| コンテスト | |
| ユーザー | 
                             aaa
                         | 
                    
| 提出日時 | 2018-10-15 12:57:58 | 
| 言語 | C++14  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 545 bytes | 
| コンパイル時間 | 1,152 ms | 
| コンパイル使用メモリ | 91,972 KB | 
| 実行使用メモリ | 6,824 KB | 
| 最終ジャッジ日時 | 2024-10-12 18:29:15 | 
| 合計ジャッジ時間 | 2,541 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 33 WA * 4 | 
ソースコード
#include <stdio.h>
#include <algorithm>
#include <iostream>
#include <string>
#include <vector>
#include <functional>
#include <map>
#include <iomanip>
#include <math.h> 
#include <stack>
#include <queue>
#include <bitset>
#include <cstdlib>
#include <tuple>
#include <cctype>
#include <ctype.h>
#include <set>
#include <sstream>
using namespace std;
int main() {
	int i, j, k;
	int n, m;
	cin >> n >> m;
	if (n > m) {
		cout << -1 << endl;
	}
	else if (n <= m) {
		cout << 1 << endl;
	}
	getchar();
	getchar();
	return 0;
}
            
            
            
        
            
aaa