結果

問題 No.144 エラトステネスのざる
ユーザー mkawa2mkawa2
提出日時 2020-01-03 00:44:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,009 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 124,212 KB
最終ジャッジ日時 2024-11-22 18:49:11
合計ジャッジ時間 29,001 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 494 ms
50,136 KB
testcase_01 AC 494 ms
123,632 KB
testcase_02 AC 490 ms
49,368 KB
testcase_03 AC 493 ms
124,096 KB
testcase_04 AC 504 ms
49,636 KB
testcase_05 AC 510 ms
124,012 KB
testcase_06 AC 509 ms
49,628 KB
testcase_07 AC 510 ms
123,836 KB
testcase_08 AC 494 ms
49,752 KB
testcase_09 AC 508 ms
123,736 KB
testcase_10 AC 503 ms
49,624 KB
testcase_11 AC 498 ms
124,212 KB
testcase_12 AC 499 ms
49,500 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *
from bisect import *
#from math import *
from collections import *
from heapq import *
from random import *
from decimal import *
import numpy as np
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def MI1(): return map(int1, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

def main():
    n,p=input().split()
    n=int(n)
    p=float(p)
    ev=[1]*(n+1)
    ans=0
    for x in range(2,n+1):
        ans+=ev[x]
        for y in range(x*2,n+1,x):
            ev[y]*=1-p
    print(ans)

main()
0