結果

問題 No.1478 Simple Sugoroku
ユーザー ks2mks2m
提出日時 2021-04-16 22:32:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 803 bytes
コンパイル時間 3,470 ms
コンパイル使用メモリ 77,224 KB
実行使用メモリ 49,748 KB
最終ジャッジ日時 2024-07-03 02:40:42
合計ジャッジ時間 10,917 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,904 KB
testcase_01 AC 49 ms
36,696 KB
testcase_02 AC 49 ms
36,812 KB
testcase_03 AC 51 ms
37,084 KB
testcase_04 AC 52 ms
36,908 KB
testcase_05 AC 49 ms
36,664 KB
testcase_06 AC 47 ms
36,704 KB
testcase_07 AC 49 ms
36,896 KB
testcase_08 AC 53 ms
36,916 KB
testcase_09 AC 49 ms
37,100 KB
testcase_10 AC 48 ms
37,088 KB
testcase_11 AC 47 ms
37,136 KB
testcase_12 AC 49 ms
37,080 KB
testcase_13 AC 212 ms
49,372 KB
testcase_14 AC 226 ms
48,900 KB
testcase_15 AC 202 ms
49,388 KB
testcase_16 AC 199 ms
49,228 KB
testcase_17 AC 202 ms
49,336 KB
testcase_18 AC 203 ms
49,472 KB
testcase_19 AC 208 ms
49,748 KB
testcase_20 AC 212 ms
49,492 KB
testcase_21 AC 199 ms
49,316 KB
testcase_22 AC 209 ms
49,228 KB
testcase_23 AC 208 ms
49,560 KB
testcase_24 AC 200 ms
49,304 KB
testcase_25 AC 214 ms
49,652 KB
testcase_26 AC 210 ms
49,540 KB
testcase_27 AC 203 ms
49,452 KB
testcase_28 AC 194 ms
48,988 KB
testcase_29 AC 205 ms
48,836 KB
testcase_30 AC 188 ms
49,172 KB
testcase_31 AC 195 ms
48,948 KB
testcase_32 AC 190 ms
48,748 KB
testcase_33 AC 200 ms
48,592 KB
testcase_34 AC 215 ms
48,876 KB
testcase_35 AC 202 ms
49,128 KB
testcase_36 AC 201 ms
48,932 KB
testcase_37 AC 190 ms
49,036 KB
testcase_38 AC 199 ms
48,988 KB
testcase_39 AC 202 ms
48,980 KB
testcase_40 AC 195 ms
48,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);

		sa = br.readLine().split(" ");
		int[] b = new int[m];
		for (int i = 0; i < m; i++) {
			b[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		double e = b[m - 1] - b[0];
		long sum = 0;
		int cnt = 0;
		for (int i = m - 1; i >= 0; i--) {
			int d = b[m - 1] - b[i];
			sum += d;
			cnt++;
			double e1 = (double) m / cnt;
			double e2 = (double) sum / cnt;
			e = Math.min(e, e1 + e2);
		}
		double ans = b[0] - 1 + e + n - b[m - 1];
		System.out.println(ans);
	}
}
0