結果
問題 | No.264 じゃんけん |
ユーザー | kya_ski |
提出日時 | 2020-04-17 19:14:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 399 bytes |
コンパイル時間 | 1,643 ms |
コンパイル使用メモリ | 164,808 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-03 10:30:21 |
合計ジャッジ時間 | 1,780 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int a, b; cin >> a >> b; auto win = [](int a, int b) { if (a == 2 and b == 0) return true; return (a < b); }; if (a == b) cout << "Draw" << '\n'; else if ((a == 2 and b == 0) or a < b) { cout << "Won" << '\n'; } else { cout << "Lost" << '\n'; } return 0; }