結果

問題 No.1256 連続整数列
ユーザー rabimea
提出日時 2025-09-27 06:31:33
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 3,079 ms
コンパイル使用メモリ 275,000 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-09-27 06:31:38
合計ジャッジ時間 4,785 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 40
権限があれば一括ダウンロードができます

ソースコード

diff #

// #pragma GCC optimize ("Ofast")
// #pragma GCC optimize ("unroll-loops")
// #pragma GCC target ("avx,avx2,fma")
#include <bits/stdc++.h>

using std::cin, std::cout, std::cerr;
using ll = long long;

int main() {
    std::ios::sync_with_stdio(false);
    ll n; cin >> n;
    cout << (n == 1 ? "NO" : "YES") << '\n';
}
0