結果
| 問題 |
No.264 じゃんけん
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-07-12 22:04:19 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 228 bytes |
| コンパイル時間 | 197 ms |
| コンパイル使用メモリ | 22,528 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-04 09:18:41 |
| 合計ジャッジ時間 | 781 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 3 WA * 6 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:5:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
5 | scanf("%d%d", &N, &K);
| ~~~~~^~~~~~~~~~~~~~~~
ソースコード
#include<cstdio>
int main(){
int N, K;
scanf("%d%d", &N, &K);
if (N == K){
printf("Drew\n");
}else if(N == ((K+1)%3)){
printf("Won\n");
}else {
printf("Lost\n");
}
return 0;
}