結果

問題 No.264 じゃんけん
ユーザー daradara_sanma
提出日時 2017-07-11 14:38:30
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 233 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 53,040 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-07 14:56:24
合計ジャッジ時間 948 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 9
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 == 1) || (k - n == -2)) printf("Won\n");
	else printf("Lost\n");

	return 0;
}
0