結果

問題 No.144 エラトステネスのざる
ユーザー tetsuzuki1115tetsuzuki1115
提出日時 2017-12-01 23:31:17
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 658 bytes
コンパイル時間 634 ms
コンパイル使用メモリ 78,400 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 21:25:26
合計ジャッジ時間 15,848 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 1,997 ms
5,376 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,889 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <math.h>
#include <cmath>
#include <limits.h>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <functional>
#include <stdio.h>
using namespace std;

long long MOD = 1000000007;

int main() {
    
    double ans = 0;
    int N;
    cin >> N;
    double p;
    cin >> p;
    
    for ( int i = 2; i <= N; i++ ) {
        
        int d = 0;
        for ( int j = 2; j*j <= i; j++ ) {
            if ( i%j == 0 ) { d += j*j == i ? 1 : 2; }
        }
        ans += pow( (1-p), d );
        
    }
    
    printf( "%f\n", ans );
    
    return 0;
}
0