結果
問題 | No.441 和か積 |
ユーザー |
|
提出日時 | 2017-07-01 16:30:19 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 622 bytes |
コンパイル時間 | 646 ms |
コンパイル使用メモリ | 73,856 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-05 05:33:43 |
合計ジャッジ時間 | 1,765 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 27 WA * 3 |
ソースコード
#include<cstdio> #include <iostream> #include<algorithm> #include<string> #include<queue> #include<vector> #include<functional> #include<cmath> #include<map> #include<stack> #include<set> #include<numeric> #define mod 1000000007; using namespace std; typedef long long ll; typedef pair<ll, ll> Pr; string A, B; int main() { cin >> A >> B; if (A.size() == 1 || B.size() == 1) { if ((A[0] == '2' && B[0] == '2') || (A[0] == '0' && B[0] == '0')) cout << 'E' << endl; else if ((A[0] == '0' || B[0] == '0' || A[0] == '1' || B[0] == '1')) cout << 'S' << endl; }else cout << 'P' << endl; return 0; }