結果

問題 No.264 じゃんけん
ユーザー forest3
提出日時 2020-03-17 15:59:57
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 296 bytes
コンパイル時間 1,714 ms
コンパイル使用メモリ 166,276 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-30 22:46:00
合計ジャッジ時間 2,203 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
	int N, K;
	cin >> N >> K;

	string ans = "Drew";
	if( abs( N - K ) == 1 ) {
		if( N < K ) ans = "Won";
		else ans = "Lost";
	}
	else if( abs( N - K ) == 2 ) {
		if( N > K ) ans = "Won";
		else ans = "Lost";
	}

	cout << ans << endl;
}
0