結果
問題 | No.201 yukicoderじゃんけん |
ユーザー | hotpepsi |
提出日時 | 2015-05-03 23:42:04 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 503 bytes |
コンパイル時間 | 530 ms |
コンパイル使用メモリ | 64,924 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-05 17:30:43 |
合計ジャッジ時間 | 1,241 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 17 WA * 3 |
ソースコード
#include <iostream> #include <algorithm> #include <sstream> #include <vector> using namespace std; int main(int argc, char *argv[]) { string sa, sb, pa, pb, xa, xb; string s; getline(cin, s); stringstream ssa(s); ssa >> sa >> pa >> xa; getline(cin, s); stringstream ssb(s); ssb >> sb >> pb >> xb; int winner = 0; int cmp = pa.compare(pb); if (cmp < 0) { winner = 2; } else if (cmp > 0) { winner = 1; } string names[3] = { "-1", sa, sb }; cout << names[winner] << endl; return 0; }