結果

問題 No.826 連絡網
ユーザー ttrttr
提出日時 2020-02-26 16:51:41
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 450 bytes
コンパイル時間 1,166 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 68,964 KB
最終ジャッジ日時 2024-10-13 15:25:39
合計ジャッジ時間 20,892 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,336 KB
testcase_01 AC 37 ms
53,536 KB
testcase_02 AC 41 ms
58,696 KB
testcase_03 AC 47 ms
60,504 KB
testcase_04 AC 49 ms
60,692 KB
testcase_05 AC 46 ms
60,208 KB
testcase_06 AC 47 ms
61,116 KB
testcase_07 AC 48 ms
60,464 KB
testcase_08 AC 46 ms
60,208 KB
testcase_09 AC 48 ms
60,152 KB
testcase_10 AC 43 ms
59,352 KB
testcase_11 AC 47 ms
61,408 KB
testcase_12 AC 1,473 ms
67,280 KB
testcase_13 AC 433 ms
64,080 KB
testcase_14 AC 1,036 ms
64,676 KB
testcase_15 AC 95 ms
60,540 KB
testcase_16 AC 587 ms
64,532 KB
testcase_17 AC 438 ms
62,656 KB
testcase_18 AC 325 ms
64,032 KB
testcase_19 AC 1,793 ms
68,092 KB
testcase_20 AC 1,822 ms
68,332 KB
testcase_21 AC 50 ms
61,500 KB
testcase_22 AC 443 ms
62,592 KB
testcase_23 AC 609 ms
63,828 KB
testcase_24 AC 225 ms
62,468 KB
testcase_25 TLE -
testcase_26 AC 274 ms
62,616 KB
testcase_27 AC 1,527 ms
65,912 KB
testcase_28 AC 1,072 ms
64,176 KB
testcase_29 AC 433 ms
63,140 KB
testcase_30 TLE -
testcase_31 AC 549 ms
64,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,P = map(int, input().split())

if P > 1:
    L = [0]*(N+1)
    n = 2
    num = P
    while n <= P**0.5:
        if P%n == 0:
            num = n
            break
        n += 1
    if num*2 <= N:
        ans = N//2-1
        for i in range(N//2+1, N+1):
            n = 2
            while n <= i**0.5:
                if i%n == 0:
                    ans += 1
                    break
                n += 1
    else:
        ans = 1

print(ans)
0