結果

問題 No.732 3PrimeCounting
ユーザー startcppstartcpp
提出日時 2017-01-22 15:17:25
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 894 bytes
コンパイル時間 43 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 28,544 KB
最終ジャッジ日時 2024-12-23 05:30:22
合計ジャッジ時間 119,235 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
17,536 KB
testcase_01 AC 100 ms
17,408 KB
testcase_02 AC 93 ms
17,536 KB
testcase_03 AC 96 ms
27,776 KB
testcase_04 AC 92 ms
17,408 KB
testcase_05 AC 101 ms
28,032 KB
testcase_06 AC 98 ms
17,536 KB
testcase_07 AC 95 ms
28,544 KB
testcase_08 AC 94 ms
17,280 KB
testcase_09 AC 93 ms
26,880 KB
testcase_10 AC 93 ms
17,408 KB
testcase_11 AC 96 ms
26,112 KB
testcase_12 AC 95 ms
17,536 KB
testcase_13 AC 94 ms
25,984 KB
testcase_14 AC 96 ms
17,536 KB
testcase_15 AC 96 ms
17,536 KB
testcase_16 AC 95 ms
17,536 KB
testcase_17 AC 93 ms
17,536 KB
testcase_18 AC 94 ms
17,408 KB
testcase_19 AC 93 ms
27,904 KB
testcase_20 AC 101 ms
12,160 KB
testcase_21 AC 138 ms
17,408 KB
testcase_22 AC 137 ms
17,536 KB
testcase_23 AC 96 ms
17,664 KB
testcase_24 AC 97 ms
17,536 KB
testcase_25 AC 228 ms
17,408 KB
testcase_26 AC 166 ms
17,280 KB
testcase_27 AC 103 ms
17,408 KB
testcase_28 AC 102 ms
17,536 KB
testcase_29 AC 121 ms
17,536 KB
testcase_30 AC 124 ms
17,408 KB
testcase_31 AC 145 ms
17,664 KB
testcase_32 AC 180 ms
17,280 KB
testcase_33 AC 188 ms
17,408 KB
testcase_34 AC 185 ms
17,664 KB
testcase_35 AC 155 ms
17,664 KB
testcase_36 AC 153 ms
17,408 KB
testcase_37 AC 95 ms
17,536 KB
testcase_38 AC 96 ms
17,536 KB
testcase_39 AC 164 ms
17,664 KB
testcase_40 AC 150 ms
12,160 KB
testcase_41 AC 148 ms
12,160 KB
testcase_42 AC 146 ms
12,288 KB
testcase_43 AC 127 ms
12,160 KB
testcase_44 AC 128 ms
12,160 KB
testcase_45 AC 102 ms
12,288 KB
testcase_46 AC 107 ms
12,032 KB
testcase_47 AC 110 ms
12,288 KB
testcase_48 AC 243 ms
12,288 KB
testcase_49 AC 243 ms
12,288 KB
testcase_50 AC 135 ms
12,288 KB
testcase_51 AC 140 ms
12,160 KB
testcase_52 AC 103 ms
12,160 KB
testcase_53 AC 616 ms
12,672 KB
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 AC 1,868 ms
13,056 KB
testcase_58 AC 1,978 ms
12,928 KB
testcase_59 AC 661 ms
12,672 KB
testcase_60 AC 2,901 ms
13,696 KB
testcase_61 AC 2,877 ms
13,440 KB
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 AC 100 ms
12,288 KB
testcase_67 AC 99 ms
12,160 KB
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 TLE -
testcase_73 TLE -
testcase_74 TLE -
testcase_75 AC 216 ms
12,416 KB
testcase_76 TLE -
testcase_77 AC 2,059 ms
12,928 KB
testcase_78 TLE -
testcase_79 TLE -
testcase_80 TLE -
testcase_81 TLE -
testcase_82 AC 101 ms
12,288 KB
testcase_83 AC 1,954 ms
13,056 KB
testcase_84 AC 2,329 ms
13,184 KB
testcase_85 TLE -
testcase_86 TLE -
testcase_87 TLE -
testcase_88 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: parentheses after method name is interpreted as an argument list, not a decomposed argument
Main.rb:26: warning: parentheses after method name is interpreted as an argument list, not a decomposed argument
Syntax OK

ソースコード

diff #

#rubyの引数, 代入は参照渡し. 参照透明性とは何だったのか…
#このコードは定数倍が重いのでTLEします

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)

ans = 0

for c in primes do
	if (c > n) then
		break
	end
	
	for sum in primes do
		if sum <= c then
			next
		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