結果

問題 No.1256 連続整数列
ユーザー oooooba
提出日時 2021-06-28 19:58:02
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 847 ms
コンパイル使用メモリ 115,544 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-06-20 11:03:26
合計ジャッジ時間 1,790 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 40
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <array>
#include <cmath>
#include <cstdio>
#include <deque>
#include <iomanip>
#include <iostream>
#include <numeric>
#include <optional>
#include <queue>
#include <set>
#include <stack>
#include <unordered_map>
#include <unordered_set>
#include <vector>

using namespace std;

int main() {
    int32_t a;
    cin >> a;
    cout << (a != 1 ? "YES" : "NO") << endl;
    return 0;
}
0