結果

問題 No.1525 Meximum Sum
ユーザー ChipppppChippppp
提出日時 2021-05-28 22:37:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 667 bytes
コンパイル時間 1,172 ms
コンパイル使用メモリ 86,816 KB
実行使用メモリ 15,528 KB
最終ジャッジ日時 2024-11-08 20:45:07
合計ジャッジ時間 4,802 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx512f")
#pragma GCC optimize("unroll-loops")
#pragma GCC optimize("Ofast")
#include <ios>
#include <unordered_set>
using namespace std;
template<class T>
inline void scan_uint(T& a) noexcept {
  a = 0;
  for (char c = getchar_unlocked(); isdigit(c); c = getchar_unlocked()) a = a * 10 + c - '0';
}
int main() {
  int n;
  scan_uint(n);
  int a[200000];
  for (int i = 0; i < n; ++i) scan_uint(a[i]);
  int ans = 0, k;
  unordered_set<int> s;
  for (int i = 0; i < n; ++i) {
    s.clear();
    k = 0;
    for (int j = i; j < n; ++j) {
      s.emplace(a[j]);
      while (s.find(k) != s.end()) ++k;
      ans += k;
    }
  }
  printf("%d", ans);
}
0