結果
問題 | No.2940 Sigma Sigma Div Floor Problem |
ユーザー | InTheBloom |
提出日時 | 2024-10-18 23:39:19 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 559 bytes |
コンパイル時間 | 1,089 ms |
コンパイル使用メモリ | 80,512 KB |
実行使用メモリ | 10,144 KB |
最終ジャッジ日時 | 2024-10-18 23:39:46 |
合計ジャッジ時間 | 9,781 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 53 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 11 ms
6,820 KB |
testcase_12 | AC | 27 ms
6,820 KB |
testcase_13 | AC | 11 ms
6,816 KB |
testcase_14 | AC | 3 ms
6,820 KB |
testcase_15 | AC | 20 ms
6,820 KB |
testcase_16 | AC | 6 ms
6,820 KB |
testcase_17 | AC | 737 ms
6,824 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
08_evil_01.txt | -- | - |
ソースコード
#include <iostream> using namespace std; using ll = long long; int main () { ll N; cin >> N; const ll MOD = 998244353; // 割った切り捨ての種類数は十分少ない典型 // -> N√Nくらい ll ans = 0; for (int i = 1; i <= N; i++) { int cur = 1; while (true) { ans += 1LL * cur * ((i / cur) - (i / (cur + 1) + 1) + 1) % MOD; ans %= MOD; int div = i / (cur + 1); if (div == 0) break; cur = i / div; } } cout << ans << "\n"; }