結果

問題 No.293 4>7の世界
ユーザー btkbtk
提出日時 2015-10-23 22:37:06
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 705 bytes
コンパイル時間 719 ms
コンパイル使用メモリ 59,208 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-23 01:28:07
合計ジャッジ時間 1,428 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>

int comp(char a,char b){
    if(a=='4'&&b=='7')return 1;
    return a>b;
}
using namespace std;
int main() {
    string A,B,_A,_B;
    cin>>A>>B;
    _A=A;_B=B;
    int n=max(A.size(),B.size());
    reverse(A.begin(),A.end());
    reverse(B.begin(),B.end());
    for(int i = A.size(); i < n; i++)A+="0";
    for(int i = B.size(); i < n; i++)A+="0";
    reverse(A.begin(),A.end());
    reverse(B.begin(),B.end());
    for(int i = 0; i < n; i++){
        if(comp(A[i],B[i])){
            cout<<_A<<endl;
            return 0;
        }
        if(comp(B[i],A[i])){
            cout<<_B<<endl;
            return 0;
        }
    }
    return 0;
}
0