結果
問題 | No.264 じゃんけん |
ユーザー | miraissan |
提出日時 | 2023-11-10 10:59:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 298 bytes |
コンパイル時間 | 1,562 ms |
コンパイル使用メモリ | 168,328 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-26 00:46:20 |
合計ジャッジ時間 | 1,851 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,948 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,948 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int A,B; cin >> A >> B; vector<int> C(3); C[0] = 1; C[1] = 2; C[2] = 0; if(A==B) { cout << "Draw" << endl; }else if(C[A]==B) { cout << "Won" << endl; }else { cout << "Lost" << endl; } }