結果
| 問題 | No.1256 連続整数列 |
| コンテスト | |
| ユーザー |
Nachia
|
| 提出日時 | 2020-10-17 21:16:07 |
| 言語 | Text (cat 8.3) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 251 bytes |
| 記録 | |
| コンパイル時間 | 29 ms |
| コンパイル使用メモリ | 6,684 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-07-21 03:03:46 |
| 合計ジャッジ時間 | 877 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 26 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
using LL = long long;
using ULL = unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)
int main() {
int A; cin >> A;
if (A != 1) cout << "YES" << endl;
else cout << "NO" << endl;
return 0;
}
Nachia