結果

問題 No.138 化石のバージョン
ユーザー VertigoVertigo
提出日時 2024-04-02 18:59:59
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 524 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 68,436 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-09-30 23:17:06
合計ジャッジ時間 1,353 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
#define ll long long

int main(){
    int n, m, k, l,s,h;
    char a, b, c ,d;
    cin >> n >> a >> m >> b >> k >> l >> c >> s >> d >> h;
    if(n > l){
        cout << "YES" << endl;
    }
    else if(n == l){
        if(m > s){
            cout << "YES" << endl;
        }
        else if(m == s){
            if(k > h){
                cout << "YES" << endl;
            }
        }
        else cout << "NO" << endl;
    }
    else cout << "NO" << endl;
        
    return 0;
}
0