結果
問題 | No.161 制限ジャンケン |
ユーザー | kpinkcat |
提出日時 | 2023-11-02 00:10:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 940 bytes |
コンパイル時間 | 1,035 ms |
コンパイル使用メモリ | 102,916 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-25 18:02:56 |
合計ジャッジ時間 | 2,004 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#include<iostream> #include<iomanip> #include<string> #include<algorithm> #include<vector> #include<set> #include<list> #include<queue> #include<math.h> #include<bitset> using ll = long long; using namespace std; int main(){ int g, c, p, pts = 0; string s; cin >> g >> c >> p >> s; for (int i = 0; i < s.size(); i++){ if (s[i] == 'G'){ if (p){ pts += 3; p--; } else if (g){ pts++; g--; } else c--; } else if (s[i] == 'C'){ if (g){ pts += 3; g--; } else if (c){ pts++; c--; } else p--; } else { if (c){ pts += 3; c--; } else if (p){ pts++; p--; } else g--; } } cout << pts << endl; }