結果
問題 | No.441 和か積 |
ユーザー |
|
提出日時 | 2017-07-01 16:27:38 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 576 bytes |
コンパイル時間 | 643 ms |
コンパイル使用メモリ | 73,900 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-05 05:31:38 |
合計ジャッジ時間 | 1,347 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 WA * 6 |
ソースコード
#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[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; }