結果

問題 No.1129 Rating じゃんけん
ユーザー kikage
提出日時 2020-10-06 16:19:25
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 491 ms
コンパイル使用メモリ 56,848 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-20 02:06:33
合計ジャッジ時間 1,385 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
    int A,B,C,D;string str;
    cin >> A >> B >> C >> D;
    if(A==C){
        switch((D-B+3)%3){
            case 0:str="Draw";break;
            case 1:str="null";break;
            case 2:str="tRue";break;
        }
    }else if(A>C) str="null";
    else str="tRue";
    cout << str << endl;
    return 0;
}
0