結果

問題 No.1129 Rating じゃんけん
ユーザー hiragn
提出日時 2020-08-21 18:09:56
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 538 bytes
コンパイル時間 2,162 ms
コンパイル使用メモリ 192,680 KB
最終ジャッジ日時 2025-01-13 04:47:52
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 14 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
    int A, B, C, D;
    cin >> A >> B >> C >> D;

    string s1 = "null", s2 = "tRue", s3 = "Draw";
    if (A > C) {
        cout << s1 << endl;
        return 0;
    }

    if (A < C) {
        cout << s2 << endl;
        return 0;
    }

    if (B == D) {
        cout << s3 << endl;
    } else {
        if ((B == 0 and C == 1) or (B == 1 and C == 2) or (B == 2 and C == 0))
            cout << s1 << endl;
        else
            cout << s2 << endl;
    }
    return 0;
}
0