結果
問題 | No.1256 連続整数列 |
ユーザー | Example0911 |
提出日時 | 2020-10-16 21:25:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 629 bytes |
コンパイル時間 | 2,215 ms |
コンパイル使用メモリ | 211,764 KB |
実行使用メモリ | 16,768 KB |
最終ジャッジ日時 | 2024-07-21 01:14:29 |
合計ジャッジ時間 | 4,446 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,368 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 31 ms
10,624 KB |
testcase_07 | AC | 32 ms
10,752 KB |
testcase_08 | AC | 34 ms
11,008 KB |
testcase_09 | AC | 59 ms
16,640 KB |
testcase_10 | WA | - |
testcase_11 | AC | 30 ms
10,368 KB |
testcase_12 | AC | 33 ms
11,008 KB |
testcase_13 | WA | - |
testcase_14 | AC | 32 ms
10,752 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 38 ms
12,032 KB |
testcase_25 | WA | - |
ソースコード
#include "bits/stdc++.h" //#include <atcoder/all> using namespace std; //using namespace atcoder; //#define int long long #define ll long long ll INF = (1LL << 60); constexpr int mod = 1000000007; using P = pair<int, int>; signed main() { ll a; cin >> a; vector<ll>tmp(100020); for (int i = 0; i < 100010; i++) { tmp[i + 1] = tmp[i] + (i + 1); } map<ll, int>mp; for (int i = 0; i <= 100010; i++) { mp[tmp[i]] = i + 1; } for (int i = 0; i <= 100010; i++) { int idx = mp[tmp[i] + a] - 1; if (idx >= 0) { if (idx - i >= 3) { cout << "YES" << endl; return 0; } } } cout << "NO" << endl; return 0; }