結果

問題 No.843 Triple Primes
ユーザー 双六双六
提出日時 2020-07-22 16:33:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 733 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 77,984 KB
最終ジャッジ日時 2024-06-12 03:51:06
合計ジャッジ時間 6,229 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
75,124 KB
testcase_01 AC 102 ms
77,404 KB
testcase_02 AC 104 ms
76,904 KB
testcase_03 AC 98 ms
76,388 KB
testcase_04 AC 99 ms
77,984 KB
testcase_05 AC 96 ms
76,612 KB
testcase_06 AC 96 ms
76,596 KB
testcase_07 AC 99 ms
76,252 KB
testcase_08 AC 96 ms
77,240 KB
testcase_09 AC 99 ms
77,688 KB
testcase_10 AC 98 ms
76,956 KB
testcase_11 AC 97 ms
76,560 KB
testcase_12 AC 100 ms
77,084 KB
testcase_13 AC 101 ms
77,184 KB
testcase_14 AC 100 ms
76,632 KB
testcase_15 AC 100 ms
77,700 KB
testcase_16 AC 98 ms
76,808 KB
testcase_17 AC 78 ms
76,424 KB
testcase_18 AC 78 ms
75,400 KB
testcase_19 AC 77 ms
76,832 KB
testcase_20 AC 100 ms
76,844 KB
testcase_21 AC 97 ms
76,728 KB
testcase_22 AC 99 ms
77,676 KB
testcase_23 AC 100 ms
77,912 KB
testcase_24 AC 99 ms
76,916 KB
testcase_25 AC 101 ms
77,120 KB
testcase_26 AC 100 ms
76,264 KB
testcase_27 AC 100 ms
76,836 KB
testcase_28 AC 99 ms
77,852 KB
testcase_29 AC 98 ms
76,548 KB
testcase_30 AC 101 ms
77,400 KB
testcase_31 AC 98 ms
76,192 KB
testcase_32 AC 99 ms
76,928 KB
testcase_33 AC 101 ms
76,972 KB
testcase_34 AC 100 ms
76,932 KB
testcase_35 AC 100 ms
76,544 KB
testcase_36 AC 100 ms
76,924 KB
testcase_37 AC 97 ms
76,360 KB
testcase_38 AC 98 ms
76,892 KB
testcase_39 AC 101 ms
76,552 KB
testcase_40 AC 78 ms
74,956 KB
testcase_41 AC 76 ms
75,972 KB
testcase_42 AC 100 ms
76,784 KB
testcase_43 AC 97 ms
77,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

num = 10 ** 6 + 1 #適当に値を入れる
L = [1 for i in range(num)]; L[0] = 0; L[1] = 0
plist = []
for i in range(num):
	if L[i] == 1:
		plist.append(i); c = 2
		while i * c <= num - 1:
			L[i * c] = 0; c += 1

#処理内容
def main():
	N = int(input())
	ans = 0
	for r in plist:
		if r > N or r ** 2 > 10 ** 6:
			break
		for p in plist:
			if p >= r ** 2:
				break
			q = r ** 2 - p
			if L[q] == 1 and p <= N and q <= N:
				# print(p, r**2-p, r, r**2)
				ans += 1

	print(ans)





if __name__ == '__main__':
	main()
0