結果

問題 No.843 Triple Primes
ユーザー matriematrie
提出日時 2021-01-09 09:02:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 34,716 KB
最終ジャッジ日時 2024-11-17 09:52:35
合計ジャッジ時間 6,338 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,496 KB
testcase_01 AC 178 ms
34,176 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 33 ms
11,136 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 33 ms
11,136 KB
testcase_07 AC 158 ms
30,308 KB
testcase_08 AC 166 ms
31,896 KB
testcase_09 AC 180 ms
34,716 KB
testcase_10 AC 153 ms
31,300 KB
testcase_11 AC 171 ms
32,824 KB
testcase_12 AC 174 ms
34,280 KB
testcase_13 AC 172 ms
33,528 KB
testcase_14 AC 174 ms
33,504 KB
testcase_15 AC 156 ms
30,560 KB
testcase_16 AC 155 ms
30,784 KB
testcase_17 AC 31 ms
10,496 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 69 ms
17,024 KB
testcase_21 AC 52 ms
14,248 KB
testcase_22 AC 115 ms
24,764 KB
testcase_23 AC 117 ms
25,488 KB
testcase_24 AC 69 ms
17,152 KB
testcase_25 AC 62 ms
15,488 KB
testcase_26 AC 178 ms
34,660 KB
testcase_27 AC 38 ms
11,904 KB
testcase_28 AC 179 ms
33,812 KB
testcase_29 AC 73 ms
17,536 KB
testcase_30 AC 173 ms
34,384 KB
testcase_31 AC 43 ms
12,544 KB
testcase_32 AC 37 ms
11,648 KB
testcase_33 AC 78 ms
18,304 KB
testcase_34 AC 107 ms
23,772 KB
testcase_35 AC 176 ms
33,920 KB
testcase_36 AC 58 ms
15,280 KB
testcase_37 AC 145 ms
29,568 KB
testcase_38 AC 129 ms
26,920 KB
testcase_39 AC 174 ms
33,968 KB
testcase_40 AC 30 ms
10,496 KB
testcase_41 AC 30 ms
10,752 KB
testcase_42 AC 157 ms
31,572 KB
testcase_43 AC 167 ms
32,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())+1
if n<3: print(0);exit(0)
L=list(range(n))
s=set()
for i in L:
	if L[i]<2:continue
	L[::i]=[0]*(n//i+(n%i>0))
	s.add(i)
c=0
a=set()
for p in s:
	if p*p-2 in s: c+=2
print(c-1)
0