結果

問題 No.1256 連続整数列
ユーザー fine
提出日時 2020-10-17 00:54:18
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 1,162 ms
コンパイル使用メモリ 162,192 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-06-20 10:43:57
合計ジャッジ時間 2,238 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 40
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

constexpr char newl = '\n';

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll a;
    cin >> a;
    cout << (a == 1 ? "NO" : "YES") << newl;

    return 0;
}
0