結果

問題 No.732 3PrimeCounting
ユーザー startcppstartcpp
提出日時 2017-01-22 15:20:46
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 903 bytes
コンパイル時間 57 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 29,824 KB
最終ジャッジ日時 2024-12-23 05:32:24
合計ジャッジ時間 114,017 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
17,280 KB
testcase_01 AC 95 ms
27,648 KB
testcase_02 AC 89 ms
17,536 KB
testcase_03 AC 92 ms
17,408 KB
testcase_04 AC 84 ms
17,280 KB
testcase_05 AC 91 ms
17,664 KB
testcase_06 AC 87 ms
27,904 KB
testcase_07 AC 88 ms
17,408 KB
testcase_08 AC 89 ms
27,136 KB
testcase_09 AC 93 ms
17,408 KB
testcase_10 AC 91 ms
27,904 KB
testcase_11 AC 94 ms
17,280 KB
testcase_12 AC 91 ms
28,032 KB
testcase_13 AC 89 ms
17,280 KB
testcase_14 AC 89 ms
27,392 KB
testcase_15 AC 90 ms
17,408 KB
testcase_16 AC 91 ms
27,648 KB
testcase_17 AC 89 ms
17,280 KB
testcase_18 AC 89 ms
26,240 KB
testcase_19 AC 93 ms
17,408 KB
testcase_20 AC 94 ms
29,056 KB
testcase_21 AC 128 ms
17,408 KB
testcase_22 AC 126 ms
29,312 KB
testcase_23 AC 89 ms
17,152 KB
testcase_24 AC 86 ms
27,904 KB
testcase_25 AC 200 ms
17,408 KB
testcase_26 AC 153 ms
28,800 KB
testcase_27 AC 96 ms
17,536 KB
testcase_28 AC 95 ms
27,648 KB
testcase_29 AC 110 ms
17,536 KB
testcase_30 AC 114 ms
28,288 KB
testcase_31 AC 130 ms
17,152 KB
testcase_32 AC 164 ms
27,776 KB
testcase_33 AC 173 ms
17,536 KB
testcase_34 AC 165 ms
27,136 KB
testcase_35 AC 137 ms
17,536 KB
testcase_36 AC 146 ms
28,288 KB
testcase_37 AC 89 ms
17,408 KB
testcase_38 AC 86 ms
29,824 KB
testcase_39 AC 139 ms
17,408 KB
testcase_40 AC 142 ms
12,416 KB
testcase_41 AC 135 ms
12,288 KB
testcase_42 AC 136 ms
12,032 KB
testcase_43 AC 115 ms
12,160 KB
testcase_44 AC 117 ms
12,160 KB
testcase_45 AC 101 ms
12,160 KB
testcase_46 AC 105 ms
12,160 KB
testcase_47 AC 111 ms
12,160 KB
testcase_48 AC 228 ms
12,288 KB
testcase_49 AC 219 ms
11,904 KB
testcase_50 AC 131 ms
11,904 KB
testcase_51 AC 131 ms
12,032 KB
testcase_52 AC 99 ms
12,288 KB
testcase_53 AC 527 ms
12,416 KB
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 AC 1,584 ms
12,928 KB
testcase_58 AC 1,607 ms
12,928 KB
testcase_59 AC 560 ms
12,672 KB
testcase_60 AC 2,453 ms
13,440 KB
testcase_61 AC 2,515 ms
13,312 KB
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 AC 84 ms
12,288 KB
testcase_67 AC 86 ms
12,032 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 183 ms
12,160 KB
testcase_76 TLE -
testcase_77 AC 1,702 ms
12,928 KB
testcase_78 TLE -
testcase_79 TLE -
testcase_80 TLE -
testcase_81 TLE -
testcase_82 AC 90 ms
11,904 KB
testcase_83 AC 1,626 ms
12,928 KB
testcase_84 AC 1,770 ms
13,056 KB
testcase_85 TLE -
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, 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