結果

問題 No.264 じゃんけん
ユーザー daradara_sanma
提出日時 2017-07-11 14:37:17
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 232 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 54,636 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-07 14:56:16
合計ジャッジ時間 1,384 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 8 WA * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |         scanf("%d %d", &n, &k);
      |         ~~~~~^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<iostream>
#include<cstdio>
using namespace std;

int main() {
	int n, k;
	scanf("%d %d", &n, &k);
	if (n == k) printf("Drew\n");
	else if ((k - n > 0) || (k - n == -2)) printf("Won\n");
	else printf("Lost\n");

	return 0;
}
0