結果
問題 | No.264 じゃんけん |
ユーザー |
![]() |
提出日時 | 2023-06-21 16:36:36 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 225 bytes |
コンパイル時間 | 177 ms |
コンパイル使用メモリ | 29,568 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-29 02:21:13 |
合計ジャッジ時間 | 655 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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) { printf("Won"); } else if (me > you) { printf("Lost"); } else { printf("Drew"); } return 0; }