結果

問題 No.78 クジ付きアイスバー
ユーザー GrenacheGrenache
提出日時 2015-11-06 20:07:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 938 bytes
コンパイル時間 2,932 ms
コンパイル使用メモリ 80,320 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-10-06 18:28:44
合計ジャッジ時間 8,729 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,104 KB
testcase_01 AC 103 ms
52,504 KB
testcase_02 AC 117 ms
53,952 KB
testcase_03 AC 116 ms
54,004 KB
testcase_04 AC 116 ms
53,744 KB
testcase_05 AC 119 ms
53,896 KB
testcase_06 AC 116 ms
52,784 KB
testcase_07 AC 105 ms
52,652 KB
testcase_08 AC 112 ms
53,648 KB
testcase_09 AC 121 ms
53,780 KB
testcase_10 AC 123 ms
53,836 KB
testcase_11 AC 117 ms
53,660 KB
testcase_12 AC 116 ms
53,964 KB
testcase_13 AC 117 ms
53,860 KB
testcase_14 AC 116 ms
53,852 KB
testcase_15 AC 109 ms
52,532 KB
testcase_16 AC 115 ms
53,724 KB
testcase_17 AC 123 ms
53,728 KB
testcase_18 AC 124 ms
53,748 KB
testcase_19 WA -
testcase_20 AC 119 ms
53,824 KB
testcase_21 AC 126 ms
53,996 KB
testcase_22 WA -
testcase_23 AC 121 ms
53,644 KB
testcase_24 AC 124 ms
53,820 KB
testcase_25 AC 115 ms
53,732 KB
testcase_26 AC 128 ms
53,760 KB
testcase_27 AC 121 ms
53,840 KB
testcase_28 AC 112 ms
52,608 KB
testcase_29 AC 124 ms
53,656 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 127 ms
53,860 KB
testcase_33 AC 124 ms
53,932 KB
testcase_34 WA -
testcase_35 AC 115 ms
53,968 KB
testcase_36 AC 131 ms
53,832 KB
testcase_37 AC 111 ms
52,696 KB
testcase_38 AC 113 ms
53,944 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] + min[k % n] - a[n];
        	
        	System.out.println(ret);
        }

        sc.close();
    }
}
0