結果

問題 No.843 Triple Primes
ユーザー 双六双六
提出日時 2020-07-22 16:29:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 687 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-06-12 03:27:57
合計ジャッジ時間 4,834 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
75,648 KB
testcase_01 AC 85 ms
75,776 KB
testcase_02 AC 71 ms
76,112 KB
testcase_03 AC 71 ms
75,648 KB
testcase_04 AC 70 ms
75,776 KB
testcase_05 AC 70 ms
75,904 KB
testcase_06 AC 77 ms
76,160 KB
testcase_07 AC 75 ms
76,032 KB
testcase_08 AC 77 ms
75,648 KB
testcase_09 AC 77 ms
75,776 KB
testcase_10 AC 79 ms
75,904 KB
testcase_11 AC 80 ms
75,776 KB
testcase_12 AC 85 ms
75,776 KB
testcase_13 AC 74 ms
76,288 KB
testcase_14 AC 77 ms
76,288 KB
testcase_15 AC 76 ms
75,648 KB
testcase_16 AC 75 ms
75,648 KB
testcase_17 AC 68 ms
75,008 KB
testcase_18 WA -
testcase_19 AC 68 ms
74,752 KB
testcase_20 AC 75 ms
75,648 KB
testcase_21 AC 75 ms
75,648 KB
testcase_22 AC 75 ms
76,416 KB
testcase_23 AC 77 ms
76,672 KB
testcase_24 AC 75 ms
76,032 KB
testcase_25 AC 73 ms
76,032 KB
testcase_26 AC 77 ms
76,160 KB
testcase_27 AC 74 ms
75,648 KB
testcase_28 AC 77 ms
75,776 KB
testcase_29 AC 72 ms
75,776 KB
testcase_30 AC 77 ms
75,776 KB
testcase_31 AC 72 ms
75,648 KB
testcase_32 AC 73 ms
76,032 KB
testcase_33 AC 75 ms
76,672 KB
testcase_34 AC 77 ms
75,648 KB
testcase_35 AC 80 ms
76,416 KB
testcase_36 AC 73 ms
75,648 KB
testcase_37 AC 77 ms
76,288 KB
testcase_38 AC 78 ms
76,288 KB
testcase_39 AC 78 ms
76,416 KB
testcase_40 WA -
testcase_41 AC 67 ms
74,624 KB
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

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 ** 2 > N:
			break
		for p in plist:
			if p >= r ** 2:
				break
			if L[r ** 2 - p] == 1:
				# print(p, r**2-p, r, r**2)
				ans += 1

	print(ans)





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