結果

問題 No.2863 Base 10 Subsets 1
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-08-30 21:25:44
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 1,978 ms
コンパイル使用メモリ 201,408 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-30 21:25:46
合計ジャッジ時間 2,578 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    string a, b;
    cin >> a >> b;
    int sa = a.size(), sb = b.size();
    if (sa < sb) {
        cout << "No" << endl;
        return 0;
    }
    reverse(a.begin(), a.end());
    reverse(b.begin(), b.end());
    for (int i = 0; i < sb; i++) {
        int na = a[i]- '0', nb = b[i] - '0';
        if (na < nb) {
            cout << "No" << endl;
            return 0;
        }
    }
    cout << "Yes" << endl;
}
0