結果

問題 No.3388 Sum of Function
コンテスト
ユーザー a01sa01to
提出日時 2025-11-30 01:59:38
言語 C++23
(gcc 13.3.0 + boost 1.89.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 564 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,933 ms
コンパイル使用メモリ 275,488 KB
実行使用メモリ 7,720 KB
最終ジャッジ日時 2025-11-30 01:59:43
合計ジャッジ時間 3,510 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;

inline bool is_prime(int x) {
  if (x == 1) return false;
  for (int i = 2; i * i <= x; ++i) {
    if (x % i == 0) return false;
  }
  return true;
}

inline int f(int x) {
  return x * x * x - x * x + x + 1;
}

int main() {
  cin.tie(nullptr)->sync_with_stdio(false);
  int a, b;
  cin >> a >> b;
  int ans = 0;
  for (int x = a; x <= b; ++x)
    if (is_prime(x)) ans += f(x);
  cout << ans << '\n';
  return 0;
}
0