結果
問題 | No.264 じゃんけん |
ユーザー | projectappbird |
提出日時 | 2019-07-25 11:56:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 271 bytes |
コンパイル時間 | 525 ms |
コンパイル使用メモリ | 67,468 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-02 05:59:09 |
合計ジャッジ時間 | 1,015 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <cstdlib> int main() { using namespace std; char lost[] = {2,0,1}; char me,you; cin >> me >> you; if (lost[me]==you) {cout << "Lost" << endl; }else if (me==you) {cout << "Drew" << endl; }else {cout << "Won" << endl;} return 0; }