結果

問題 No.2863 Base 10 Subsets 1
コンテスト
ユーザー Today03
提出日時 2024-08-30 21:24:41
言語 C++23
(gcc 15.3.0 + boost 1.92.0 + ACL)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 2,000 ms
+ 292µs
コード長 454 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,083 ms
コンパイル使用メモリ 332,748 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2026-08-25 09:20:15
合計ジャッジ時間 3,291 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

int main() {
    string A, B;
    cin >> A >> B;
    ranges::reverse(A);
    ranges::reverse(B);

    while (A.size() < B.size()) A += '0';
    while (A.size() > B.size()) B += '0';

    for (int i = 0; i < (int)A.size(); i++) {
        if (A[i] < B[i]) {
            puts("No");
            return 0;
        }
    }

    puts("Yes");
}
0