結果
| 問題 |
No.532 Possible or Impossible
|
| コンテスト | |
| ユーザー |
WA_TLE
|
| 提出日時 | 2017-06-23 22:31:16 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 31 ms / 2,000 ms |
| コード長 | 648 bytes |
| コンパイル時間 | 1,017 ms |
| コンパイル使用メモリ | 105,596 KB |
| 最終ジャッジ日時 | 2025-01-05 00:46:44 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
#include<string>
#include<deque>
#include<queue>
#include<vector>
#include<algorithm>
#include<iostream>
#include<set>
#include<cmath>
#include<tuple>
#include<map>
#include<functional>
using namespace std;
typedef long long int llint;
typedef bool izryt;
#define mp make_pair
#define mt make_tuple
#define pub push_back
#define puf push_front
#define pob pop_back
#define pof pop_front
#define fir first
#define sec second
#define res resize
#define ins insert
#define era erase
const int big=1e9;
const int mod=1e9 + 7;
int main(void){
int i,j,n,m;cin>>n>>m;
if(n<=2&&m==0){cout<<"Impossible"<<endl;}
else{cout<<"Possible"<<endl;}
return 0;
}
WA_TLE