結果

問題 No.144 エラトステネスのざる
ユーザー furafyfurafy
提出日時 2015-03-08 18:11:28
言語 C90
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 483 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 22,528 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-24 16:09:00
合計ジャッジ時間 4,133 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 0 ms
6,940 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:9:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         scanf("%d %f", &n, &p);
      |         ^~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main(void) {
	int n, x, i;
	float p, mean = 0;
	float list_of_koho[n+1];
	float list_of_sosu[n+1];

	scanf("%d %f", &n, &p);
	for (i = 2; i <= n; i++) {
		list_of_koho[i] = 1;
		list_of_sosu[i] = 0;
	}
	for (x = 2; x <= n; x++) {
		list_of_sosu[x] = list_of_koho[x];
		list_of_koho[x] = 0;
		for (i = 2; x*i <= n; i++)
			list_of_koho[x*i] -= list_of_koho[x*i] * p;
	}
	for (i = 2; i <= n; i++)
		mean += list_of_sosu[i];
	printf("%f\n", mean);

	return 0;
}
0