結果

問題 No.732 3PrimeCounting
ユーザー startcppstartcpp
提出日時 2017-01-22 15:37:45
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 920 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 45,312 KB
最終ジャッジ日時 2024-12-23 05:38:02
合計ジャッジ時間 102,432 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 286 ms
45,056 KB
testcase_01 AC 295 ms
27,648 KB
testcase_02 AC 283 ms
27,776 KB
testcase_03 AC 286 ms
45,184 KB
testcase_04 AC 288 ms
27,776 KB
testcase_05 AC 281 ms
45,056 KB
testcase_06 AC 284 ms
27,648 KB
testcase_07 AC 285 ms
45,312 KB
testcase_08 AC 287 ms
27,648 KB
testcase_09 AC 282 ms
44,800 KB
testcase_10 AC 285 ms
27,904 KB
testcase_11 AC 289 ms
44,800 KB
testcase_12 AC 280 ms
27,648 KB
testcase_13 AC 283 ms
45,056 KB
testcase_14 AC 290 ms
27,904 KB
testcase_15 AC 283 ms
22,400 KB
testcase_16 AC 293 ms
22,400 KB
testcase_17 AC 284 ms
22,400 KB
testcase_18 AC 282 ms
22,528 KB
testcase_19 AC 282 ms
22,528 KB
testcase_20 AC 290 ms
22,400 KB
testcase_21 AC 299 ms
22,528 KB
testcase_22 AC 294 ms
22,656 KB
testcase_23 AC 283 ms
22,528 KB
testcase_24 AC 289 ms
22,656 KB
testcase_25 AC 323 ms
22,400 KB
testcase_26 AC 307 ms
22,528 KB
testcase_27 AC 282 ms
22,400 KB
testcase_28 AC 284 ms
22,656 KB
testcase_29 AC 289 ms
22,400 KB
testcase_30 AC 297 ms
22,400 KB
testcase_31 AC 295 ms
22,400 KB
testcase_32 AC 309 ms
22,656 KB
testcase_33 AC 315 ms
22,400 KB
testcase_34 AC 305 ms
22,400 KB
testcase_35 AC 298 ms
22,400 KB
testcase_36 AC 304 ms
22,528 KB
testcase_37 AC 285 ms
22,656 KB
testcase_38 AC 288 ms
22,400 KB
testcase_39 AC 302 ms
22,400 KB
testcase_40 AC 301 ms
22,528 KB
testcase_41 AC 296 ms
22,400 KB
testcase_42 AC 302 ms
22,656 KB
testcase_43 AC 300 ms
22,528 KB
testcase_44 AC 290 ms
22,400 KB
testcase_45 AC 285 ms
22,528 KB
testcase_46 AC 289 ms
22,656 KB
testcase_47 AC 287 ms
22,528 KB
testcase_48 AC 323 ms
22,656 KB
testcase_49 AC 327 ms
22,656 KB
testcase_50 AC 293 ms
22,528 KB
testcase_51 AC 295 ms
22,528 KB
testcase_52 AC 293 ms
22,656 KB
testcase_53 AC 424 ms
22,400 KB
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 AC 778 ms
22,400 KB
testcase_58 AC 773 ms
22,400 KB
testcase_59 AC 439 ms
22,528 KB
testcase_60 AC 1,073 ms
22,528 KB
testcase_61 AC 1,074 ms
22,400 KB
testcase_62 TLE -
testcase_63 AC 1,851 ms
22,400 KB
testcase_64 AC 1,331 ms
22,528 KB
testcase_65 AC 1,344 ms
22,400 KB
testcase_66 AC 294 ms
22,528 KB
testcase_67 AC 291 ms
22,400 KB
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 AC 1,765 ms
22,528 KB
testcase_73 TLE -
testcase_74 TLE -
testcase_75 AC 323 ms
22,528 KB
testcase_76 TLE -
testcase_77 AC 845 ms
22,400 KB
testcase_78 TLE -
testcase_79 TLE -
testcase_80 TLE -
testcase_81 TLE -
testcase_82 AC 295 ms
22,400 KB
testcase_83 AC 796 ms
22,400 KB
testcase_84 AC 884 ms
22,400 KB
testcase_85 AC 2,800 ms
22,656 KB
testcase_86 TLE -
testcase_87 TLE -
testcase_88 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:3: warning: parentheses after method name is interpreted as an argument list, not a decomposed argument
Main.rb:25: warning: parentheses after method name is interpreted as an argument list, not a decomposed argument
Syntax OK

ソースコード

diff #

#rubyの引数, 代入は参照渡し. 参照透明性とは何だったのか…

def setPrime (is_prime, primes, n)
	for i in 2..n do
		is_prime[i] = true
	end
	
	for i in 2..n do
		if is_prime[i] then
			j = 2 * i
			while j <= n do
				is_prime[j] = false
				j += i
			end
		end
	end
	
	for i in 2..n do
		if is_prime[i] then
			primes.push(i);
		end
	end
end

def initCnts (cnts, n)
	for i in 0..n do
		cnts[i] = 0
	end
end

#ここからmain
n = STDIN.gets.chop.to_i

is_prime = Array.new
primes   = Array.new
cnts     = Array.new

setPrime(is_prime, primes, 400000)
initCnts(cnts, 400000)

ans = 0
max_exist = 0
i = 0
while primes[i] <= n do
	j = i + 1
	while primes[j] - primes[i] <= max_exist do
		ans += cnts[primes[j] - primes[i]]
		j += 1
	end
	
	j = 0
	while j < i do
		cnts[primes[j] + primes[i]] += 1
		j += 1
	end
	
	if (i > 0) then
		max_exist = primes[i] + primes[i - 1]
	end
	
	i += 1
end

puts(ans)
0