結果

問題 No.441 和か積
ユーザー aaaaaaiu
提出日時 2019-07-30 21:14:42
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 2,048 ms
コンパイル使用メモリ 193,520 KB
最終ジャッジ日時 2025-01-07 10:08:46
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 26 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main() {
    string a, b;
    cin>>a>>b;
    if (a=="1"||b=="1") puts("S");
    else if (a=="2"&&b=="2") puts("E");
    else puts("P");
    return 0;
}
0