結果

問題 No.1256 連続整数列
ユーザー leaf_1415
提出日時 2020-10-16 21:24:09
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 58,232 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-06-20 10:54:40
合計ジャッジ時間 1,418 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 40
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#define llint long long

using namespace std;

llint n;

int main(void)
{
  ios::sync_with_stdio(0);
  cin.tie(0);

  cin >> n;
  if(n <= 1) cout << "NO" << endl;
  else cout << "YES" << endl;

  return 0;
}
0