結果

問題 No.1653 Squarefree
ユーザー ぷらぷら
提出日時 2021-08-20 22:51:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 690 ms / 2,000 ms
コード長 1,037 bytes
コンパイル時間 2,162 ms
コンパイル使用メモリ 204,640 KB
実行使用メモリ 11,296 KB
最終ジャッジ日時 2024-10-14 08:32:41
合計ジャッジ時間 19,813 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 631 ms
11,092 KB
testcase_01 AC 13 ms
6,820 KB
testcase_02 AC 13 ms
6,816 KB
testcase_03 AC 13 ms
6,820 KB
testcase_04 AC 12 ms
6,816 KB
testcase_05 AC 12 ms
6,816 KB
testcase_06 AC 12 ms
6,816 KB
testcase_07 AC 12 ms
6,820 KB
testcase_08 AC 12 ms
6,820 KB
testcase_09 AC 12 ms
6,816 KB
testcase_10 AC 12 ms
6,816 KB
testcase_11 AC 459 ms
11,248 KB
testcase_12 AC 446 ms
11,092 KB
testcase_13 AC 622 ms
11,252 KB
testcase_14 AC 596 ms
11,056 KB
testcase_15 AC 633 ms
11,160 KB
testcase_16 AC 690 ms
11,140 KB
testcase_17 AC 633 ms
11,096 KB
testcase_18 AC 651 ms
11,180 KB
testcase_19 AC 594 ms
11,048 KB
testcase_20 AC 566 ms
11,272 KB
testcase_21 AC 596 ms
11,296 KB
testcase_22 AC 600 ms
11,100 KB
testcase_23 AC 608 ms
11,060 KB
testcase_24 AC 651 ms
11,152 KB
testcase_25 AC 626 ms
11,280 KB
testcase_26 AC 627 ms
11,112 KB
testcase_27 AC 573 ms
11,108 KB
testcase_28 AC 568 ms
11,072 KB
testcase_29 AC 581 ms
11,100 KB
testcase_30 AC 609 ms
11,120 KB
testcase_31 AC 638 ms
11,096 KB
testcase_32 AC 670 ms
11,232 KB
testcase_33 AC 603 ms
11,108 KB
testcase_34 AC 642 ms
11,220 KB
testcase_35 AC 610 ms
11,164 KB
testcase_36 AC 13 ms
6,816 KB
testcase_37 AC 12 ms
6,820 KB
testcase_38 AC 12 ms
6,820 KB
testcase_39 AC 12 ms
6,820 KB
testcase_40 AC 12 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    long long L,R;
    cin >> L >> R;
    vector<long long>tmp(R-L+1);
    for(long long j = L; j <= R; j++) {
        tmp[j-L] = j;
    }
    vector<bool>used(R-L+1);
    for(long long i = 2; i <= 1000000; i++) {
        for(long long j = (L+i-1)/i*i; j <= R; j += i) {
            int cnt = 0;
            while (tmp[j-L]%i == 0) {
                tmp[j-L] /= i;
                cnt++;
            }
            if(cnt >= 2) {
                used[j-L] = true;
            }
        }
    }
    int ans = 0;
    for(long long i = L; i <= R; i++) {
        if(!used[i-L]) {
            long long l = 1,r = 1001001001;
            while (l+1 < r) {
                long long mid = (l+r)/2;
                if(mid*mid >= tmp[i-L]) {
                    r = mid;
                }
                else {
                    l = mid;
                }
            }
            if(r*r != tmp[i-L]) {
                ans++;
            }
        }
    }
    cout << ans << endl;
}
0