結果
問題 |
No.264 じゃんけん
|
ユーザー |
![]() |
提出日時 | 2023-06-21 16:34:33 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 235 bytes |
コンパイル時間 | 128 ms |
コンパイル使用メモリ | 30,080 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-29 02:19:08 |
合計ジャッジ時間 | 550 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 7 WA * 2 |
ソースコード
#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"); } return 0; }