結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー subsnsubsn
提出日時 2023-06-19 15:49:35
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 29,696 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-27 04:12:19
合計ジャッジ時間 2,087 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 7 ms
5,376 KB
testcase_06 AC 33 ms
5,376 KB
testcase_07 AC 65 ms
5,376 KB
testcase_08 AC 36 ms
5,376 KB
testcase_09 AC 25 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'main':
main.c:3:5: warning: type of 'i' defaults to 'int' [-Wimplicit-int]
    3 | int main(i)
      |     ^~~~

ソースコード

diff #

#include <stdio.h>
#include<string.h>
int main(i)
{
	double o,x,len,lens;
	o = 0;
	x = 0;
	char s[100001];
	memset(s, 0, sizeof(char) * 100001);
	scanf("%s",&s);
	len = strlen(s);
	lens = len;
	for (i = 0;i < len;i++) {
		s[i]=='o'?o++:x++;
	}
	for (i = 0;i < len;i++) {
		printf("%f\n", (double)o / lens * 100);
		s[i]=='o'?o--:x--;
		lens--;
	}
}
0