結果

問題 No.264 じゃんけん
ユーザー byamibyami
提出日時 2017-11-03 19:27:36
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 346 bytes
コンパイル時間 1,607 ms
コンパイル使用メモリ 166,088 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-22 15:41:31
合計ジャッジ時間 1,943 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,a,n) for (int i = a;i < n;i++)
#define per(i,n,a) for (int i = n-1;i >= a;i--)
using namespace std;

int main() {
    int n,k; cin >> n >> k;
    if(n == k){
        cout << "Drew" << endl;
    }else if((n - k + 3) % 3 == 1){
        cout << "Lose" << endl;
    }else{
        cout << "Win" << endl;
    }
}
0