結果

問題 No.3248 構築問題
ユーザー yukicoder
提出日時 2025-08-07 22:56:30
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 638 ms
コンパイル使用メモリ 80,252 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-08-07 22:56:51
合計ジャッジ時間 1,440 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

int main() {
    std::ios_base::sync_with_stdio(false);
    std::cin.tie(NULL);
    long long n, x;
    std::cin >> n >> x;
    if (n == 1) {
        std::cout << "No" << std::endl;
    } else {
        std::cout << "Yes" << std::endl;
    }
    return 0;
}
0