結果

問題 No.1256 連続整数列
ユーザー kpinkcatkpinkcat
提出日時 2023-08-28 16:46:03
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 274 bytes
コンパイル時間 1,124 ms
コンパイル使用メモリ 101,304 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-29 22:00:25
合計ジャッジ時間 2,289 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 26
権限があれば一括ダウンロードができます

ソースコード

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