結果
問題 | No.2525 Great Move |
ユーザー |
|
提出日時 | 2023-11-06 16:07:29 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 158 bytes |
コンパイル時間 | 1,857 ms |
コンパイル使用メモリ | 169,596 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-25 23:03:56 |
合計ジャッジ時間 | 2,366 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 14 WA * 12 |
ソースコード
#include<bits/stdc++.h>using namespace std;int main(){long long a,b;cin>>a>>b;vector<string> ans={"Possible","Impossible"};cout<<ans[(a+b)%1]<<endl;}