結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー %20%20
提出日時 2018-01-12 17:04:29
言語 cLay
(20240714-1)
結果
AC  
実行時間 865 ms / 1,000 ms
コード長 117 bytes
コンパイル時間 2,214 ms
コンパイル使用メモリ 171,584 KB
実行使用メモリ 85,720 KB
最終ジャッジ日時 2024-09-26 07:57:47
合計ジャッジ時間 33,459 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 788 ms
84,524 KB
testcase_01 AC 813 ms
83,604 KB
testcase_02 AC 816 ms
84,840 KB
testcase_03 AC 840 ms
83,916 KB
testcase_04 AC 848 ms
84,712 KB
testcase_05 AC 799 ms
85,500 KB
testcase_06 AC 821 ms
84,408 KB
testcase_07 AC 865 ms
84,308 KB
testcase_08 AC 833 ms
85,456 KB
testcase_09 AC 832 ms
85,384 KB
testcase_10 AC 825 ms
84,188 KB
testcase_11 AC 815 ms
85,700 KB
testcase_12 AC 806 ms
85,104 KB
testcase_13 AC 820 ms
84,824 KB
testcase_14 AC 836 ms
85,544 KB
testcase_15 AC 837 ms
84,248 KB
testcase_16 AC 818 ms
84,380 KB
testcase_17 AC 820 ms
84,176 KB
testcase_18 AC 806 ms
84,756 KB
testcase_19 AC 810 ms
84,644 KB
testcase_20 AC 815 ms
84,132 KB
testcase_21 AC 819 ms
84,604 KB
testcase_22 AC 790 ms
84,048 KB
testcase_23 AC 782 ms
83,644 KB
testcase_24 AC 797 ms
83,844 KB
testcase_25 AC 794 ms
85,072 KB
testcase_26 AC 811 ms
85,152 KB
testcase_27 AC 832 ms
83,760 KB
testcase_28 AC 792 ms
85,720 KB
testcase_29 AC 795 ms
84,328 KB
testcase_30 AC 788 ms
84,192 KB
testcase_31 AC 773 ms
85,512 KB
testcase_32 AC 806 ms
85,404 KB
testcase_33 AC 816 ms
85,360 KB
testcase_34 AC 808 ms
85,196 KB
testcase_35 AC 811 ms
83,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll N,L,x,p[2d7],j;
{
	rd(N,L);
	rep(i,2,3d3)for(j=i;j<1d7;)p[j+=i]=1;
	rep(i,2,L/~-N+1)x-=p[i]?0:~L+i*~-N;
	wt(x);
}
0