結果

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

ソースコード

diff #

#include<iostream>
#include<map>
#include<vector>
#include <algorithm>
#include<math.h>
#include <iomanip>
#include<set>
#include <numeric>
#include<string>
using namespace std;

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