結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー tailstails
提出日時 2021-08-27 22:03:32
言語 cLay
(20240714-1)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 107 bytes
コンパイル時間 2,537 ms
コンパイル使用メモリ 172,284 KB
実行使用メモリ 10,036 KB
最終ジャッジ日時 2024-07-05 15:24:03
合計ジャッジ時間 3,518 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,624 KB
testcase_01 AC 2 ms
7,492 KB
testcase_02 AC 8 ms
6,944 KB
testcase_03 AC 2 ms
7,364 KB
testcase_04 AC 3 ms
7,624 KB
testcase_05 AC 2 ms
7,500 KB
testcase_06 AC 2 ms
7,504 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
9,552 KB
testcase_09 AC 2 ms
7,616 KB
testcase_10 AC 2 ms
7,492 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 8 ms
6,940 KB
testcase_13 AC 6 ms
7,804 KB
testcase_14 AC 9 ms
7,744 KB
testcase_15 AC 9 ms
10,036 KB
testcase_16 AC 5 ms
6,944 KB
testcase_17 AC 6 ms
6,944 KB
testcase_18 AC 6 ms
7,876 KB
testcase_19 AC 7 ms
6,940 KB
testcase_20 AC 8 ms
9,912 KB
testcase_21 AC 7 ms
6,944 KB
testcase_22 AC 13 ms
6,944 KB
testcase_23 AC 13 ms
9,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int p[1d6];
ll f(ll x){
	return x<3?0:Prime(x,p);
}
{
	ll@l,@r;
	wt(r==1?0:f(r+1)-f(l)+f(2*r)-f(2*l+1));
}
0