結果
| 問題 |
No.441 和か積
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-07-01 16:30:59 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 656 bytes |
| コンパイル時間 | 990 ms |
| コンパイル使用メモリ | 73,936 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-26 00:54:50 |
| 合計ジャッジ時間 | 2,021 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 WA * 1 |
ソースコード
#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;
}else
cout << 'P' << endl;
return 0;
}