結果

問題 No.2525 Great Move
ユーザー friedrice
提出日時 2025-01-01 22:26:44
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 916 bytes
コンパイル時間 6,709 ms
コンパイル使用メモリ 333,512 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2025-01-01 22:26:53
合計ジャッジ時間 7,617 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
using ull = unsigned long long;
using mint = atcoder::modint998244353;
using maxt = atcoder::modint1000000007;
vector<ll> Era(int N) {
  vector<ll> ans(0, 0);
  vector<bool> isprime(N + 1, true);
  isprime.at(1) = false;
  for(int i = 1; i <= N; i++) {
    if(isprime.at(i)) {
      ans.push_back(i);
      for(int j = 2 * i; j <= N; j += i) {
        isprime.at(j) = false;
      }
    }
  }
  return ans;
}
ll POW(ll a, int N) {
  if(N == 1) {
    return a;
  }
  ll ans = POW(a, N / 2) * POW(a, N / 2);
  if(N % 2 == 1) {
    ans *= a;
  }
  return ans;
}
//ライブラリここまで

vector<ll> prime;
int main() {
  string H, S;
  cin >> H >> S;
  int h = H.size(), s = S.size();
  if(((H.at(h - 1) - '0') + (S.at(s - 1) - '0')) % 2 == 0) {
    cout << "Possible";
  }
  else {
    cout << "Impossible" << endl;
  }
}
0