結果
| 問題 | No.201 yukicoderじゃんけん |
| コンテスト | |
| ユーザー |
古寺いろは
|
| 提出日時 | 2015-05-03 23:21:27 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 315 bytes |
| 記録 | |
| コンパイル時間 | 1,462 ms |
| コンパイル使用メモリ | 175,500 KB |
| 実行使用メモリ | 7,716 KB |
| 最終ジャッジ日時 | 2026-03-27 03:11:35 |
| 合計ジャッジ時間 | 1,561 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 WA * 10 |
ソースコード
#include "bits/stdc++.h"
using namespace std;
int main() {
string name[2];
int point[2];
string meguru;
cin >> name[0] >> point[0] >> meguru;
cin >> name[1] >> point[1] >> meguru;
string ans = "-1";
if (point[0] > point[1]) ans = name[0];
if (point[1] > point[0]) ans = name[1];
cout << ans << endl;
}
古寺いろは