結果

問題 No.264 じゃんけん
ユーザー adio_partsadio_parts
提出日時 2017-06-01 23:35:50
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 661 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 55,164 KB
実行使用メモリ 4,372 KB
最終ジャッジ日時 2023-10-21 20:18:35
合計ジャッジ時間 1,085 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main() {
    
    int m,y;
    cin >> m >> y;
    if(m == y){cout << "drew" << "\n";}
    else{
        if(m == 0){
            if(y == 1){
                cout << "won" << "\n";
            }else{
                cout << "lose" << "\n";
            }
        }
        if(m == 1){
            if(y == 0){
                cout << "lose" << "\n";
            }else{
                cout << "won" << "\n";
            }
        }
        if(m == 2){
            if(y == 0){
                cout << "won" << "\n";
            }else{
                cout << "lose" << "\n";
            }
        }
    }
    return 0;
}
0