結果

問題 No.732 3PrimeCounting
ユーザー startcppstartcpp
提出日時 2017-01-25 11:57:27
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 631 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 7,200 KB
実行使用メモリ 21,160 KB
最終ジャッジ日時 2024-06-02 11:17:40
合計ジャッジ時間 8,378 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
11,904 KB
testcase_01 AC 9 ms
6,528 KB
testcase_02 AC 9 ms
6,400 KB
testcase_03 AC 9 ms
6,272 KB
testcase_04 AC 9 ms
6,400 KB
testcase_05 AC 9 ms
6,528 KB
testcase_06 AC 10 ms
6,400 KB
testcase_07 AC 9 ms
6,272 KB
testcase_08 AC 9 ms
6,400 KB
testcase_09 AC 10 ms
6,400 KB
testcase_10 AC 10 ms
6,528 KB
testcase_11 AC 10 ms
6,528 KB
testcase_12 AC 9 ms
6,400 KB
testcase_13 AC 9 ms
6,400 KB
testcase_14 AC 10 ms
6,400 KB
testcase_15 AC 9 ms
6,400 KB
testcase_16 AC 9 ms
6,400 KB
testcase_17 AC 10 ms
6,400 KB
testcase_18 AC 10 ms
6,400 KB
testcase_19 AC 10 ms
6,400 KB
testcase_20 AC 13 ms
6,400 KB
testcase_21 AC 54 ms
6,656 KB
testcase_22 AC 53 ms
6,656 KB
testcase_23 AC 10 ms
6,400 KB
testcase_24 AC 10 ms
6,400 KB
testcase_25 AC 150 ms
6,944 KB
testcase_26 AC 88 ms
6,784 KB
testcase_27 AC 19 ms
6,528 KB
testcase_28 AC 18 ms
6,528 KB
testcase_29 AC 39 ms
6,656 KB
testcase_30 AC 40 ms
6,656 KB
testcase_31 AC 62 ms
6,784 KB
testcase_32 AC 108 ms
6,912 KB
testcase_33 AC 109 ms
6,912 KB
testcase_34 AC 108 ms
6,912 KB
testcase_35 AC 72 ms
6,784 KB
testcase_36 AC 70 ms
6,784 KB
testcase_37 AC 12 ms
6,400 KB
testcase_38 AC 12 ms
6,400 KB
testcase_39 AC 78 ms
6,784 KB
testcase_40 AC 64 ms
6,784 KB
testcase_41 AC 64 ms
6,784 KB
testcase_42 AC 65 ms
6,784 KB
testcase_43 AC 45 ms
6,656 KB
testcase_44 AC 46 ms
6,784 KB
testcase_45 AC 22 ms
6,528 KB
testcase_46 AC 22 ms
6,528 KB
testcase_47 AC 29 ms
6,528 KB
testcase_48 AC 167 ms
6,912 KB
testcase_49 AC 165 ms
6,940 KB
testcase_50 AC 55 ms
6,656 KB
testcase_51 AC 59 ms
6,784 KB
testcase_52 AC 21 ms
6,528 KB
testcase_53 AC 550 ms
7,552 KB
testcase_54 TLE -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def setPrime(n, is_prime, primes):
	is_prime = [0] * (n + 1)
	for i in range(n + 1):
		is_prime[i] = True
	is_prime[0] = False
	is_prime[1] = False

	for i in range(n + 1):
		if (is_prime[i]):
			j = i * 2
			while (j <= n):
				is_prime[j] = False
				j += i

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

n = int(input())
is_prime = []
primes = []
cnts = [0] * (3 * n + 1)

setPrime(3 * n, is_prime, primes)
primes2 = primes[:]

ans = 0
for c in primes:
	if (c > n):
		break
	for sum in primes2:
		ans += cnts[sum - c]
	primes2.remove(c)
	for a in primes:
		if (a >= c):
			break
		cnts[a + c] += 1
print(ans)
0