結果
問題 | No.1653 Squarefree |
ユーザー | Haa |
提出日時 | 2021-08-20 22:37:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 893 bytes |
コンパイル時間 | 1,624 ms |
コンパイル使用メモリ | 170,412 KB |
実行使用メモリ | 11,164 KB |
最終ジャッジ日時 | 2024-10-14 04:41:50 |
合計ジャッジ時間 | 9,500 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 14 ms
5,248 KB |
testcase_02 | AC | 14 ms
5,248 KB |
testcase_03 | RE | - |
testcase_04 | AC | 14 ms
5,248 KB |
testcase_05 | RE | - |
testcase_06 | AC | 13 ms
5,248 KB |
testcase_07 | RE | - |
testcase_08 | AC | 15 ms
5,248 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 197 ms
11,008 KB |
testcase_12 | AC | 197 ms
10,880 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef pair<ll,ll> P; typedef vector<ll> VI; typedef vector<VI> VVI; #define REP(i,n) for(int i=0;i<(n);i++) #define ALL(v) v.begin(),v.end() template<typename T> bool chmax(T &x, const T &y) {return (x<y)?(x=y,true):false;}; template<typename T> bool chmin(T &x, const T &y) {return (x>y)?(x=y,true):false;}; constexpr ll MOD=998244353; constexpr ll INF=2e18; int main() { ll l, r; cin >> l >> r; VI f(r-l+1,0); ll rt; bool b; for(ll i=1;i<=1000000;i++){ ll s=((l-i+1)/i+1)*i; rt=sqrt(i); b=0; if(rt*rt==i&&i!=1) b=1; for(ll j=s;j<=r;j+=i){ rt=sqrt(j/i); if((rt!=1&&rt*rt==j/i)||b) f[j-l]=1; } } int ans=0; for(ll i=l;i<=r;i++) ans+=!f[i-l]; cout << ans << endl; return 0; }