結果
問題 |
No.2525 Great Move
|
ユーザー |
![]() |
提出日時 | 2024-02-09 19:40:56 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 266 bytes |
コンパイル時間 | 2,115 ms |
コンパイル使用メモリ | 193,104 KB |
最終ジャッジ日時 | 2025-02-19 03:05:25 |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 15 WA * 11 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); string a, b; cin >> a >> b; cout << ((a[0]-b[0])%2 == 0 ? "Possible" : "Impossible") << endl; return 0; }