結果
問題 | No.201 yukicoderじゃんけん |
ユーザー | somo_6 |
提出日時 | 2015-05-08 23:20:37 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 461 bytes |
コンパイル時間 | 479 ms |
コンパイル使用メモリ | 59,224 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 20:34:14 |
合計ジャッジ時間 | 1,256 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 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 | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
ソースコード
#include<iostream> #include<algorithm> using namespace std; struct person { string name; string yuruhuwa; string hand; }; int main() { person player[2]; for(auto &p : player) { cin >> p.name >> p.yuruhuwa >> p.hand; } if(player[0].yuruhuwa==player[1].yuruhuwa){ cout << "-1" << endl; return 0; } person win = max(player[0],player[1], [](const person& a,const person& b){ return a.yuruhuwa<b.yuruhuwa; } ); cout << win.name << endl; }