結果

問題 No.441 和か積
ユーザー h_nosonh_noson
提出日時 2016-11-11 22:32:04
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 1,070 bytes
コンパイル時間 776 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-27 03:23:01
合計ジャッジ時間 1,685 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <iomanip>
#include <cassert>
using namespace std;

#define GET_ARG(a,b,c,F,...) F
#define REP3(i,s,e) for (i = s; i <= e; i++)
#define REP2(i,n) REP3 (i,0,(int)(n)-1)
#define REP(...) GET_ARG (__VA_ARGS__,REP3,REP2) (__VA_ARGS__)
#define RREP3(i,s,e) for (i = s; i >= e; i--)
#define RREP2(i,n) RREP3 (i,(int)(n)-1,0)
#define RREP(...) GET_ARG (__VA_ARGS__,RREP3,RREP2) (__VA_ARGS__)
#define DEBUG(x) cerr << #x ": " << x << endl

int main(void) {
    string a, b;
    cin >> a >> b;
    int fa, fb;
    fa = fb = 3;
    if (a.size() == 1) {
        fa = a[0] - '0';
    }
    if (b.size() == 1) {
        fb = b[0] - '0';
    }
    if (fa == 0) {
        if (fb == 0)
            cout << "E" << endl;
        else
            cout << "S" << endl;
    }
    else if (fb <= 1 || fa == 1) {
        cout << "S" << endl;
    }
    else if (fa == 2 && fb == 2) {
        cout << "E" << endl;
    }
    else {
        cout << "P" << endl;
    }
    return 0;
}
0