結果
問題 | No.1256 連続整数列 |
ユーザー | Example0911 |
提出日時 | 2020-10-16 21:27:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 655 bytes |
コンパイル時間 | 2,866 ms |
コンパイル使用メモリ | 210,304 KB |
実行使用メモリ | 29,952 KB |
最終ジャッジ日時 | 2024-07-21 01:17:07 |
合計ジャッジ時間 | 6,181 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 66 ms
17,408 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 66 ms
17,664 KB |
testcase_07 | AC | 64 ms
17,792 KB |
testcase_08 | AC | 66 ms
18,176 KB |
testcase_09 | AC | 122 ms
29,952 KB |
testcase_10 | WA | - |
testcase_11 | AC | 63 ms
17,408 KB |
testcase_12 | AC | 66 ms
17,920 KB |
testcase_13 | WA | - |
testcase_14 | AC | 64 ms
17,664 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 | 69 ms
19,072 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(200020); for (int i = 0; i < 200010; i++) { tmp[i + 1] = tmp[i] + (i + 1); } map<ll, int>mp; for (int i = 0; i <= 200010; i++) { mp[tmp[i]] = i + 1; } for (int i = 0; i <= 200010; i++) { int idx = mp[tmp[i] + a] - 1; if (idx >= 0) { if (tmp[idx] - tmp[i] == a && idx - i >= 3) { cout << "YES" << endl; return 0; } } } cout << "NO" << endl; return 0; }