結果

問題 No.576 E869120 and Rings
ユーザー ミドリムシミドリムシ
提出日時 2017-10-13 22:53:37
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 805 bytes
コンパイル時間 870 ms
コンパイル使用メモリ 63,028 KB
実行使用メモリ 13,764 KB
最終ジャッジ日時 2024-11-17 11:39:34
合計ジャッジ時間 26,268 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 1,389 ms
10,624 KB
testcase_09 WA -
testcase_10 AC 1,251 ms
10,624 KB
testcase_11 WA -
testcase_12 AC 1,218 ms
10,624 KB
testcase_13 TLE -
testcase_14 AC 17 ms
5,248 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 216 ms
5,248 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
6,820 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++;
		}
		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