結果

問題 No.201 yukicoderじゃんけん
ユーザー focusfocus
提出日時 2018-02-21 01:46:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 706 bytes
コンパイル時間 849 ms
コンパイル使用メモリ 69,872 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-13 19:21:48
合計ジャッジ時間 1,448 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<string>
#include<cstdio>
using namespace std;
int main(){
    string s1,s2,a1,a2;
    char none;
    bool flag=false;
    cin >> s1 >> a1 >> none >> s2 >> a2 >> none;
    if(a1.size()==a2.size()){
        for(int i=0;i<a1.size();i++){
            if(a1[i]<a2[i]){
                cout << s2;
                flag = true;
                break;
            }
            else if(a1[i]>a2[i]){
                cout << s1;
                flag = true;
                break;
            }
        }
    }
    else if(a1.size()>a2.size()){
        cout << s1;
    }
    else{
        cout << s2;
    }
    if(!flag)   cout << -1;
    return 0;
}
0