結果

問題 No.78 クジ付きアイスバー
ユーザー chocoruskchocorusk
提出日時 2020-10-03 11:20:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 931 bytes
コンパイル時間 2,360 ms
コンパイル使用メモリ 77,804 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-07-18 04:13:39
合計ジャッジ時間 7,946 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,088 KB
testcase_01 AC 112 ms
54,292 KB
testcase_02 AC 99 ms
52,680 KB
testcase_03 AC 112 ms
54,200 KB
testcase_04 AC 110 ms
54,192 KB
testcase_05 AC 99 ms
53,004 KB
testcase_06 AC 105 ms
52,772 KB
testcase_07 AC 100 ms
52,752 KB
testcase_08 AC 111 ms
54,100 KB
testcase_09 AC 116 ms
54,120 KB
testcase_10 AC 111 ms
53,968 KB
testcase_11 AC 112 ms
53,888 KB
testcase_12 AC 114 ms
54,184 KB
testcase_13 AC 119 ms
54,060 KB
testcase_14 AC 116 ms
54,072 KB
testcase_15 AC 111 ms
53,968 KB
testcase_16 AC 116 ms
53,824 KB
testcase_17 AC 105 ms
52,904 KB
testcase_18 AC 104 ms
52,700 KB
testcase_19 AC 114 ms
54,196 KB
testcase_20 AC 101 ms
52,856 KB
testcase_21 AC 116 ms
54,096 KB
testcase_22 AC 115 ms
53,952 KB
testcase_23 AC 116 ms
54,120 KB
testcase_24 AC 124 ms
54,088 KB
testcase_25 AC 106 ms
53,452 KB
testcase_26 AC 117 ms
54,088 KB
testcase_27 AC 116 ms
53,776 KB
testcase_28 AC 116 ms
53,992 KB
testcase_29 AC 118 ms
53,808 KB
testcase_30 AC 112 ms
54,004 KB
testcase_31 AC 117 ms
53,716 KB
testcase_32 AC 113 ms
53,764 KB
testcase_33 AC 112 ms
54,136 KB
testcase_34 AC 115 ms
54,008 KB
testcase_35 AC 101 ms
52,920 KB
testcase_36 AC 110 ms
54,160 KB
testcase_37 AC 102 ms
52,916 KB
testcase_38 AC 115 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Scanner;

public class Main{
	public static void main(String[] args) {
		Scanner scanner=new Scanner(System.in);
		PrintWriter out=new PrintWriter(System.out);
		int n=Integer.parseInt(scanner.next());
		int k=Integer.parseInt(scanner.next());
		String s=scanner.next();
		int x=0, y=0;
		int i;
		for(i=0; i<n; i++) {
			int c=s.charAt(i)-'0';
			if(y==0) {
				x++;
			}else {
				y--;
			}
			y+=c;
			if(i+1>=k) {
				out.println(x);
				out.close();
				scanner.close();
				return;
			}
		}
		if(x<=y) {
			out.println(x);
		}else {
			int ans=x+(k-n)/n*(x-y);
			k%=n;
			if(k>0) {
				int y0=y;
				x=0;
				y=0;
				for(i=0; i<n; i++) {
					int c=s.charAt(i)-'0';
					if(y==0) {
						x++;
					}else {
						y--;
					}
					y+=c;
					if(i+1>=k) {
						ans+=Math.max(0,  x-y0);
						break;
					}
				}
			}
			out.println(ans);
		}
		out.close();
		scanner.close();
	}
}
0