結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
17,792 KB
testcase_01 AC 71 ms
12,288 KB
testcase_02 AC 71 ms
12,160 KB
testcase_03 AC 70 ms
12,288 KB
testcase_04 AC 69 ms
12,288 KB
testcase_05 AC 70 ms
12,160 KB
testcase_06 AC 69 ms
12,160 KB
testcase_07 AC 70 ms
12,288 KB
testcase_08 AC 70 ms
12,288 KB
testcase_09 AC 69 ms
12,288 KB
testcase_10 AC 70 ms
12,416 KB
testcase_11 AC 70 ms
12,160 KB
testcase_12 AC 70 ms
12,160 KB
testcase_13 AC 73 ms
12,288 KB
testcase_14 AC 73 ms
12,288 KB
testcase_15 AC 70 ms
12,288 KB
testcase_16 AC 71 ms
12,288 KB
testcase_17 AC 71 ms
12,160 KB
testcase_18 AC 70 ms
12,288 KB
testcase_19 AC 71 ms
12,160 KB
testcase_20 AC 74 ms
12,288 KB
testcase_21 AC 102 ms
12,160 KB
testcase_22 AC 103 ms
12,160 KB
testcase_23 AC 74 ms
12,288 KB
testcase_24 AC 72 ms
12,160 KB
testcase_25 AC 167 ms
12,288 KB
testcase_26 AC 125 ms
12,288 KB
testcase_27 AC 77 ms
12,288 KB
testcase_28 AC 77 ms
12,160 KB
testcase_29 AC 91 ms
12,160 KB
testcase_30 AC 91 ms
12,160 KB
testcase_31 AC 109 ms
12,160 KB
testcase_32 AC 138 ms
12,288 KB
testcase_33 AC 139 ms
12,160 KB
testcase_34 AC 139 ms
12,288 KB
testcase_35 AC 113 ms
12,416 KB
testcase_36 AC 114 ms
12,160 KB
testcase_37 AC 72 ms
12,160 KB
testcase_38 AC 72 ms
12,416 KB
testcase_39 AC 116 ms
12,288 KB
testcase_40 AC 109 ms
12,416 KB
testcase_41 AC 109 ms
12,160 KB
testcase_42 AC 111 ms
12,288 KB
testcase_43 AC 97 ms
12,288 KB
testcase_44 AC 97 ms
12,288 KB
testcase_45 AC 81 ms
12,288 KB
testcase_46 AC 80 ms
12,288 KB
testcase_47 AC 83 ms
12,160 KB
testcase_48 AC 180 ms
12,416 KB
testcase_49 AC 183 ms
12,288 KB
testcase_50 AC 110 ms
12,288 KB
testcase_51 AC 103 ms
12,160 KB
testcase_52 AC 79 ms
12,288 KB
testcase_53 AC 438 ms
12,544 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 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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, 3 * n)
initCnts(cnts, 3 * n)
rprimes = primes.reverse #primesの中身は変更されない

ans = 0

for c in primes do
	if (c > n) then
		break
	end
	
	for sum in rprimes do
		if sum <= c then
			break
		end
		
		ans += cnts[sum - c]
	end
	
	for a in primes do
		if a >= c then
			break
		end
		
		cnts[a + c] += 1
	end
end

puts(ans)
0