結果

問題 No.78 クジ付きアイスバー
ユーザー GrenacheGrenache
提出日時 2015-11-06 20:13:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 951 bytes
コンパイル時間 3,476 ms
コンパイル使用メモリ 77,652 KB
実行使用メモリ 41,388 KB
最終ジャッジ日時 2024-11-08 01:33:01
合計ジャッジ時間 9,807 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,252 KB
testcase_01 AC 132 ms
41,164 KB
testcase_02 AC 130 ms
41,104 KB
testcase_03 AC 132 ms
41,272 KB
testcase_04 AC 133 ms
41,076 KB
testcase_05 AC 134 ms
41,304 KB
testcase_06 AC 122 ms
40,048 KB
testcase_07 AC 135 ms
40,856 KB
testcase_08 AC 136 ms
41,244 KB
testcase_09 AC 131 ms
41,244 KB
testcase_10 AC 131 ms
39,680 KB
testcase_11 AC 133 ms
41,104 KB
testcase_12 AC 117 ms
39,812 KB
testcase_13 AC 131 ms
41,024 KB
testcase_14 AC 132 ms
40,960 KB
testcase_15 AC 119 ms
40,108 KB
testcase_16 AC 119 ms
40,148 KB
testcase_17 AC 130 ms
41,136 KB
testcase_18 AC 134 ms
41,136 KB
testcase_19 AC 133 ms
41,044 KB
testcase_20 AC 135 ms
41,080 KB
testcase_21 AC 133 ms
41,076 KB
testcase_22 AC 132 ms
40,944 KB
testcase_23 AC 121 ms
40,076 KB
testcase_24 AC 132 ms
41,040 KB
testcase_25 AC 132 ms
40,972 KB
testcase_26 AC 132 ms
41,280 KB
testcase_27 AC 134 ms
41,080 KB
testcase_28 AC 133 ms
41,204 KB
testcase_29 AC 130 ms
41,036 KB
testcase_30 AC 131 ms
40,868 KB
testcase_31 AC 131 ms
41,224 KB
testcase_32 AC 132 ms
41,044 KB
testcase_33 AC 132 ms
41,144 KB
testcase_34 AC 135 ms
41,224 KB
testcase_35 AC 135 ms
40,984 KB
testcase_36 AC 121 ms
40,192 KB
testcase_37 AC 132 ms
41,388 KB
testcase_38 AC 135 ms
41,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder78 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int k = sc.nextInt();
        char[] s = sc.next().toCharArray();
        int[] a = new int[n + 1];
        int[] min = new int[n + 1];

        for (int i = 1; i <= n; i++) {
        	if (a[i - 1] > 0) {
        		min[i] = min[i - 1];
        		a[i] = a[i - 1] - 1 + s[i - 1] - '0';
        	} else {
        		min[i] = min[i - 1] + 1;
        		a[i] = a[i - 1] + s[i - 1] - '0';
        	}
        }
        
        if (k > n && a[n] >= min[n]) {
        	System.out.println(min[n]);
        } else if (k <= n) {
        	System.out.println(min[k]);
        } else {
        	long ret = (min[n] - a[n]) * (k / n - 1);
        	ret += min[n] + Math.max(0, min[k % n] - a[n]);
        	
        	System.out.println(ret);
        }

        sc.close();
    }
}
0