結果

問題 No.576 E869120 and Rings
ユーザー ミドリムシミドリムシ
提出日時 2017-10-13 22:55:24
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 833 bytes
コンパイル時間 1,248 ms
コンパイル使用メモリ 63,320 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-28 17:38:48
合計ジャッジ時間 8,751 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 15 ms
6,944 KB
testcase_14 AC 17 ms
6,940 KB
testcase_15 AC 15 ms
6,940 KB
testcase_16 AC 13 ms
6,944 KB
testcase_17 AC 17 ms
6,944 KB
testcase_18 AC 15 ms
6,940 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
using namespace std;
 
int main(){
	int N, K;
	string jewelry;
	cin >> N >> K >> jewelry;
	int blue_gem = 0;
	for(int i = 0; i < K; i++){
		blue_gem += jewelry[i] - '0';
	}
	double ans = 0;
	for(int i = 0; i < N; i++){
		blue_gem -= jewelry[(i - 1 + N) % N] - '0';
		blue_gem += jewelry[(i + K - 1 + N) % N] - '0';
		int blue_gem_plus = 0;
		for(int j = 1; j + K - 1 < N; j++){
			if(jewelry[(i - j + N) % N] == '0'){
				break;
			}
			blue_gem_plus++;
		}
		int plus_i = 0;
		for(int j = 1; j + K - 1 < N; j++){
			if(jewelry[(i + K + j - 1 + N) % N] == '0'){
				break;
			}
			blue_gem_plus++;
			plus_i++;
		}
		i += plus_i;
		double ans_tmp = (blue_gem_plus + blue_gem) / double(blue_gem_plus + K);
		if(ans < ans_tmp){
			ans = ans_tmp;
		}
	}
	cout << setprecision(10) << ans << endl;
}
0