結果
| 問題 | No.1256 連続整数列 |
| コンテスト | |
| ユーザー |
a01sa01to
|
| 提出日時 | 2024-03-24 00:25:09 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 811µs | |
| コード長 | 351 bytes |
| 記録 | |
| コンパイル時間 | 1,907 ms |
| コンパイル使用メモリ | 328,680 KB |
| 実行使用メモリ | 9,396 KB |
| 最終ジャッジ日時 | 2026-07-12 13:25:14 |
| 合計ジャッジ時間 | 3,758 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 40 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include "settings/debug.cpp"
#define _GLIBCXX_DEBUG
#else
#define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;
int main() {
int a;
cin >> a;
cout << (a == 1 ? "NO" : "YES") << endl;
return 0;
}
a01sa01to