結果

問題 No.732 3PrimeCounting
ユーザー startcppstartcpp
提出日時 2017-01-22 15:37:45
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 920 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-06-02 09:31:30
合計ジャッジ時間 50,776 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
27,904 KB
testcase_01 AC 236 ms
22,656 KB
testcase_02 AC 228 ms
22,400 KB
testcase_03 AC 227 ms
22,528 KB
testcase_04 AC 228 ms
22,656 KB
testcase_05 AC 229 ms
22,400 KB
testcase_06 AC 230 ms
22,656 KB
testcase_07 AC 229 ms
22,528 KB
testcase_08 AC 228 ms
22,528 KB
testcase_09 AC 230 ms
22,400 KB
testcase_10 AC 231 ms
22,400 KB
testcase_11 AC 229 ms
22,400 KB
testcase_12 AC 228 ms
22,400 KB
testcase_13 AC 231 ms
22,656 KB
testcase_14 AC 240 ms
22,528 KB
testcase_15 AC 232 ms
22,528 KB
testcase_16 AC 229 ms
22,528 KB
testcase_17 AC 240 ms
22,528 KB
testcase_18 AC 230 ms
22,400 KB
testcase_19 AC 233 ms
22,400 KB
testcase_20 AC 237 ms
22,528 KB
testcase_21 AC 238 ms
22,400 KB
testcase_22 AC 241 ms
22,656 KB
testcase_23 AC 230 ms
22,528 KB
testcase_24 AC 232 ms
22,656 KB
testcase_25 AC 261 ms
22,528 KB
testcase_26 AC 244 ms
22,400 KB
testcase_27 AC 231 ms
22,400 KB
testcase_28 AC 231 ms
22,400 KB
testcase_29 AC 238 ms
22,400 KB
testcase_30 AC 241 ms
22,400 KB
testcase_31 AC 241 ms
22,400 KB
testcase_32 AC 260 ms
22,400 KB
testcase_33 AC 250 ms
22,656 KB
testcase_34 AC 251 ms
22,528 KB
testcase_35 AC 246 ms
22,656 KB
testcase_36 AC 243 ms
22,400 KB
testcase_37 AC 228 ms
22,528 KB
testcase_38 AC 235 ms
22,528 KB
testcase_39 AC 241 ms
22,528 KB
testcase_40 AC 246 ms
22,528 KB
testcase_41 AC 241 ms
22,528 KB
testcase_42 AC 242 ms
22,528 KB
testcase_43 AC 237 ms
22,400 KB
testcase_44 AC 235 ms
22,528 KB
testcase_45 AC 231 ms
22,528 KB
testcase_46 AC 231 ms
22,400 KB
testcase_47 AC 232 ms
22,528 KB
testcase_48 AC 265 ms
22,400 KB
testcase_49 AC 262 ms
22,528 KB
testcase_50 AC 238 ms
22,400 KB
testcase_51 AC 238 ms
22,400 KB
testcase_52 AC 232 ms
22,400 KB
testcase_53 AC 343 ms
22,528 KB
testcase_54 AC 2,665 ms
22,528 KB
testcase_55 AC 2,616 ms
22,400 KB
testcase_56 AC 2,700 ms
22,528 KB
testcase_57 AC 633 ms
22,528 KB
testcase_58 AC 638 ms
22,656 KB
testcase_59 AC 358 ms
22,400 KB
testcase_60 AC 866 ms
22,656 KB
testcase_61 AC 866 ms
22,528 KB
testcase_62 TLE -
testcase_63 AC 1,520 ms
22,656 KB
testcase_64 AC 1,083 ms
22,400 KB
testcase_65 AC 1,103 ms
22,400 KB
testcase_66 AC 229 ms
22,400 KB
testcase_67 AC 234 ms
22,656 KB
testcase_68 TLE -
testcase_69 AC 2,988 ms
22,656 KB
testcase_70 AC 2,691 ms
22,400 KB
testcase_71 AC 2,681 ms
22,528 KB
testcase_72 AC 1,416 ms
22,656 KB
testcase_73 TLE -
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 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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