結果

問題 No.843 Triple Primes
ユーザー MineMine
提出日時 2020-09-15 22:21:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 456 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 656 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 78,924 KB
最終ジャッジ日時 2024-06-22 02:44:57
合計ジャッジ時間 11,720 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,740 KB
testcase_01 AC 456 ms
78,584 KB
testcase_02 AC 53 ms
65,256 KB
testcase_03 AC 52 ms
65,268 KB
testcase_04 AC 53 ms
67,660 KB
testcase_05 AC 52 ms
64,484 KB
testcase_06 AC 54 ms
66,252 KB
testcase_07 AC 338 ms
77,840 KB
testcase_08 AC 373 ms
78,472 KB
testcase_09 AC 436 ms
78,508 KB
testcase_10 AC 355 ms
77,984 KB
testcase_11 AC 398 ms
78,328 KB
testcase_12 AC 426 ms
78,924 KB
testcase_13 AC 412 ms
78,164 KB
testcase_14 AC 412 ms
78,376 KB
testcase_15 AC 341 ms
77,788 KB
testcase_16 AC 350 ms
77,812 KB
testcase_17 AC 38 ms
53,072 KB
testcase_18 AC 39 ms
52,696 KB
testcase_19 AC 38 ms
53,132 KB
testcase_20 AC 122 ms
76,476 KB
testcase_21 AC 86 ms
76,484 KB
testcase_22 AC 227 ms
77,044 KB
testcase_23 AC 238 ms
77,712 KB
testcase_24 AC 126 ms
76,376 KB
testcase_25 AC 103 ms
76,144 KB
testcase_26 AC 436 ms
78,716 KB
testcase_27 AC 62 ms
73,948 KB
testcase_28 AC 418 ms
78,004 KB
testcase_29 AC 133 ms
76,140 KB
testcase_30 AC 428 ms
78,580 KB
testcase_31 AC 71 ms
76,204 KB
testcase_32 AC 59 ms
73,296 KB
testcase_33 AC 143 ms
75,948 KB
testcase_34 AC 208 ms
77,000 KB
testcase_35 AC 436 ms
78,916 KB
testcase_36 AC 99 ms
76,076 KB
testcase_37 AC 324 ms
77,752 KB
testcase_38 AC 268 ms
77,344 KB
testcase_39 AC 421 ms
78,104 KB
testcase_40 AC 37 ms
52,464 KB
testcase_41 AC 36 ms
52,124 KB
testcase_42 AC 366 ms
77,976 KB
testcase_43 AC 398 ms
78,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
import math
def is_prime(n):
    if n == 1: return False
    for k in range(2, int(math.sqrt(n)) + 1):
        if n % k == 0:
            return False
    return True

prime = []
for i in range(1, n+1):
    if is_prime(i):
        prime.append(i)

if n == 1:
    print(0)
else:
    ans = 1
    for r in prime[1:]:
        if r**2-2 > n:
            break
        if r**2-2 in prime:
            ans += 2
    print(ans)
0