結果

問題 No.441 和か積
ユーザー kichirb3kichirb3
提出日時 2018-03-03 18:21:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 616 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 64,168 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-12 16:50:13
合計ジャッジ時間 2,359 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 WA -
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 WA -
testcase_16 AC 1 ms
4,380 KB
testcase_17 WA -
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 1 ms
4,380 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 2 ms
4,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 2 ms
4,380 KB
testcase_26 WA -
testcase_27 AC 2 ms
4,376 KB
testcase_28 AC 2 ms
4,376 KB
testcase_29 AC 2 ms
4,376 KB
testcase_30 AC 1 ms
4,376 KB
testcase_31 AC 1 ms
4,376 KB
testcase_32 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// No.441 和か積
// https://yukicoder.me/problems/no/441
//
#include <iostream>
using namespace std;

char solve(double A, double B);


int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    double A, B;
    cin >> A >> B;
    char ans = solve(A, B);
    cout << ans << endl;
}

char solve(double A, double B) {
    if (A == 0.0) {
        if (B == 0.0)
            return 'E';
        else
            return 'S';
    } else {
        if (B == 0.0)
            return 'S';
        else
            if (A == 2.0 && B == 2.0)
                return 'E';
            return 'P';
    }
}
0