結果

問題 No.264 じゃんけん
ユーザー kachipan
提出日時 2023-06-21 16:33:54
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 223 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 30,208 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-29 02:19:07
合計ジャッジ時間 1,000 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 7 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main()
{
	int me = 0;
	int you = 0;
	scanf("%d", &me);
	scanf("%d", &you);

	if (me == you - 1)
	{
		printf("Won");
	}
	else if (me == you + 1)
	{
		printf("Lost");
	}
	else
	{
		printf("Drew");
	}
}
0