結果

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

ソースコード

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;
    }
        
    return 0;
}
0