結果

問題 No.843 Triple Primes
ユーザー ntudantuda
提出日時 2024-02-03 18:58:43
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 512 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 175,556 KB
最終ジャッジ日時 2024-09-28 10:57:37
合計ジャッジ時間 13,668 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 572 ms
175,556 KB
testcase_02 AC 46 ms
61,312 KB
testcase_03 AC 45 ms
60,672 KB
testcase_04 AC 48 ms
63,072 KB
testcase_05 AC 46 ms
60,800 KB
testcase_06 AC 48 ms
63,232 KB
testcase_07 AC 388 ms
152,576 KB
testcase_08 AC 447 ms
159,744 KB
testcase_09 AC 555 ms
174,336 KB
testcase_10 AC 414 ms
154,004 KB
testcase_11 AC 489 ms
165,404 KB
testcase_12 AC 532 ms
170,228 KB
testcase_13 AC 507 ms
168,104 KB
testcase_14 AC 511 ms
167,936 KB
testcase_15 AC 402 ms
153,912 KB
testcase_16 AC 408 ms
154,140 KB
testcase_17 RE -
testcase_18 AC 38 ms
52,352 KB
testcase_19 AC 38 ms
52,096 KB
testcase_20 AC 119 ms
90,672 KB
testcase_21 AC 82 ms
78,464 KB
testcase_22 AC 235 ms
123,728 KB
testcase_23 AC 246 ms
126,080 KB
testcase_24 AC 126 ms
92,660 KB
testcase_25 AC 114 ms
84,992 KB
testcase_26 AC 552 ms
174,208 KB
testcase_27 AC 56 ms
72,832 KB
testcase_28 AC 520 ms
169,344 KB
testcase_29 AC 131 ms
94,372 KB
testcase_30 AC 541 ms
170,880 KB
testcase_31 AC 66 ms
76,512 KB
testcase_32 AC 55 ms
70,528 KB
testcase_33 AC 142 ms
98,168 KB
testcase_34 AC 217 ms
118,272 KB
testcase_35 AC 559 ms
174,580 KB
testcase_36 AC 102 ms
82,116 KB
testcase_37 AC 372 ms
147,456 KB
testcase_38 AC 290 ms
134,004 KB
testcase_39 AC 535 ms
170,240 KB
testcase_40 AC 38 ms
52,352 KB
testcase_41 RE -
testcase_42 AC 435 ms
157,900 KB
testcase_43 AC 489 ms
165,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
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