結果

問題 No.843 Triple Primes
ユーザー ntudantuda
提出日時 2024-02-03 19:03:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 561 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 81,860 KB
実行使用メモリ 175,580 KB
最終ジャッジ日時 2024-09-28 10:58:16
合計ジャッジ時間 13,257 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 561 ms
175,580 KB
testcase_02 AC 46 ms
61,184 KB
testcase_03 AC 45 ms
60,672 KB
testcase_04 AC 48 ms
62,848 KB
testcase_05 AC 46 ms
60,928 KB
testcase_06 AC 48 ms
63,488 KB
testcase_07 AC 390 ms
153,028 KB
testcase_08 AC 448 ms
159,616 KB
testcase_09 AC 553 ms
174,208 KB
testcase_10 AC 411 ms
154,212 KB
testcase_11 AC 487 ms
165,412 KB
testcase_12 AC 531 ms
170,368 KB
testcase_13 AC 505 ms
168,064 KB
testcase_14 AC 512 ms
168,448 KB
testcase_15 AC 398 ms
153,728 KB
testcase_16 AC 407 ms
154,112 KB
testcase_17 AC 37 ms
52,096 KB
testcase_18 AC 39 ms
52,096 KB
testcase_19 AC 39 ms
52,224 KB
testcase_20 AC 119 ms
90,292 KB
testcase_21 AC 82 ms
78,352 KB
testcase_22 AC 238 ms
123,508 KB
testcase_23 AC 246 ms
125,952 KB
testcase_24 AC 126 ms
92,288 KB
testcase_25 AC 115 ms
84,864 KB
testcase_26 AC 555 ms
174,080 KB
testcase_27 AC 55 ms
72,704 KB
testcase_28 AC 518 ms
169,216 KB
testcase_29 AC 132 ms
94,464 KB
testcase_30 AC 540 ms
171,008 KB
testcase_31 AC 67 ms
76,696 KB
testcase_32 AC 56 ms
70,656 KB
testcase_33 AC 147 ms
98,016 KB
testcase_34 AC 221 ms
118,144 KB
testcase_35 AC 561 ms
174,464 KB
testcase_36 AC 102 ms
82,048 KB
testcase_37 AC 370 ms
147,840 KB
testcase_38 AC 290 ms
134,400 KB
testcase_39 AC 526 ms
170,240 KB
testcase_40 AC 38 ms
52,212 KB
testcase_41 AC 38 ms
51,840 KB
testcase_42 AC 433 ms
157,696 KB
testcase_43 AC 484 ms
165,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N == 1:
    print(0)
    exit()
def seachPrimeNum(N):
    max = int(N**0.5)
    seachList = [i for i in range(2,N+1)]
    primeNum = []
    while seachList[0] <= max:
        primeNum.append(seachList[0])
        tmp = seachList[0]
        seachList = [i for i in seachList if i % tmp != 0]
    primeNum.extend(seachList)
    return primeNum

PL = seachPrimeNum(N)
PLS = set(PL)
ans = 0
for r in PL:
    r2 = r * r
    if r2 > 2 * N:
        break
    for p in PL:
        if r2 - p in PLS:
            ans += 1
print(ans)




0