結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー tatt61880tatt61880
提出日時 2021-03-23 23:45:18
言語 Kuin
(KuinC++ v.2021.9.17)
結果
RE  
実行時間 -
コード長 568 bytes
コンパイル時間 2,179 ms
コンパイル使用メモリ 147,004 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-09-16 12:05:05
合計ジャッジ時間 3,980 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 RE -
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 RE -
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 5 ms
5,376 KB
testcase_20 AC 14 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 24 ms
6,144 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 RE -
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 11 ms
5,376 KB
testcase_33 AC 45 ms
8,448 KB
testcase_34 AC 44 ms
8,448 KB
testcase_35 AC 20 ms
5,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

func main()
var n: int :: cui@inputInt() - 1
var l: int :: cui@inputInt()
var max: int :: l / n
var isPrime: []bool :: sieve(max)
var ans: int :: 0
for p(2, max)
if(isPrime[p])
do ans :+ l - p * n + 1
end if
end for
do cui@print("\{ans}\n")
func sieve(n: int): []bool
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
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0