結果
| 問題 | No.3388 Sum of Function |
| コンテスト | |
| ユーザー |
a01sa01to
|
| 提出日時 | 2025-11-30 01:58:00 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 536 bytes |
| 記録 | |
| コンパイル時間 | 3,073 ms |
| コンパイル使用メモリ | 275,184 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2025-11-30 01:58:05 |
| 合計ジャッジ時間 | 3,764 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 WA * 3 |
ソースコード
#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) {
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;
}
a01sa01to