結果

問題 No.201 yukicoderじゃんけん
ユーザー LavenderLavender
提出日時 2019-09-13 08:45:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 589 bytes
コンパイル時間 1,441 ms
コンパイル使用メモリ 167,744 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-04 03:43:18
合計ジャッジ時間 2,029 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 1 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 1 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main()
{
    string sa, sb, pa, pb, ans = "-1";
    char c;
    cin >> sa >> pa >> c >> sb >> pb >> c;
    int len = pa.length();
    if (pa.length() > pb.length()) ans = pa;
    else if (pa.length() == pb.length()) {
        while (len > 0) {
            if (pa[len-1] > pb[len-1]) {
                ans = sa;
                break;
            } else if (pa[len-1] < pb[len-1]) {
                ans = sb;
                break;
            }
            len--;
        }
    }
    else ans = pb;
    cout << ans << endl;
    return 0;
}
0