結果

問題 No.3079 アルベド
ユーザー tatt61880tatt61880
提出日時 2021-04-01 23:14:58
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 2,582 ms
コンパイル使用メモリ 145,764 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-16 12:20:53
合計ジャッジ時間 4,119 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
6,812 KB
testcase_01 AC 91 ms
6,940 KB
testcase_02 AC 57 ms
6,944 KB
testcase_03 AC 40 ms
6,940 KB
testcase_04 AC 73 ms
6,940 KB
testcase_05 AC 55 ms
6,944 KB
testcase_06 AC 67 ms
6,940 KB
testcase_07 AC 14 ms
6,940 KB
testcase_08 AC 20 ms
6,940 KB
testcase_09 AC 53 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	const max: int :: 100000
	var isPrime: []bool :: sieve(max)
	var cum: []int :: #[max + 1]int
	for i(1, max)
		do cum[i] :: cum[i - 1] + (isPrime[i] ?(1, 0))
	end for
	var t: int :: cui@inputInt()
	for(1, t)
		var n: int :: cui@inputInt()
		do cui@print("\{cum[n]}\n")
	end for
	
	func sieve(n: int): []bool
		if(n < 2)
			ret[false].repeat(n + 1)
		end if
		var isPrime: []bool :: [true].repeat(n + 1)
		do isPrime[0] :: false
		do isPrime[1] :: false
		for i(2, n)
			if(isPrime[i])
				var j: int :: i * i
				while(j <= n)
					do isPrime[j] :: false
					do j :+ i
				end while
			end if
		end for
		ret isPrime
	end func
end func
0