結果

問題 No.78 クジ付きアイスバー
ユーザー YamaKasaYamaKasa
提出日時 2018-10-16 23:55:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,652 bytes
コンパイル時間 5,361 ms
コンパイル使用メモリ 76,688 KB
実行使用メモリ 56,256 KB
最終ジャッジ日時 2024-10-12 18:47:14
合計ジャッジ時間 9,263 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 136 ms
54,140 KB
testcase_02 AC 132 ms
53,820 KB
testcase_03 AC 138 ms
53,964 KB
testcase_04 AC 133 ms
53,864 KB
testcase_05 AC 136 ms
53,820 KB
testcase_06 AC 139 ms
54,320 KB
testcase_07 AC 137 ms
54,072 KB
testcase_08 AC 137 ms
53,760 KB
testcase_09 AC 136 ms
53,988 KB
testcase_10 AC 136 ms
54,372 KB
testcase_11 AC 138 ms
53,664 KB
testcase_12 AC 138 ms
53,964 KB
testcase_13 AC 138 ms
53,960 KB
testcase_14 AC 137 ms
54,092 KB
testcase_15 AC 138 ms
54,012 KB
testcase_16 AC 135 ms
53,880 KB
testcase_17 AC 136 ms
54,264 KB
testcase_18 AC 137 ms
54,124 KB
testcase_19 AC 132 ms
53,896 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 134 ms
54,164 KB
testcase_26 AC 139 ms
53,920 KB
testcase_27 AC 130 ms
53,852 KB
testcase_28 AC 132 ms
53,888 KB
testcase_29 AC 131 ms
53,968 KB
testcase_30 AC 130 ms
54,252 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 131 ms
54,080 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 141 ms
53,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int K = scan.nextInt();
		String S = scan.next();
		int l = S.length();
		int k = 0;
		if(K <= N) {
			int cnt = 0;
			int a = 0;
			for(int i = 0; i < N; i++) {
				if(a == 0) {
					cnt++;
				}else {
					a--;
				}
				if(K <= 0) {
					break;
				}
				if(S.charAt(i) == '1') {
					a++;
					K--;
				}else if(S.charAt(i) == '2') {
					K -= 2;
					a+=2;
				}
			}
			System.out.println(cnt);
			System.exit(0);
		}
		int a = 0;
		int cnt = 0;
		for(int i = 0; i < N; i++) {
			if(S.charAt(i) == '2') {
				a += 2;
			}else if(S.charAt(i) == '1') {
				a ++;
			}
		}
		if(a >= l) {
			cnt = 0;
			a = 0;
			for(int i = 0; i < N; i++) {
				if(a == 0) {
					cnt++;
				}else {
					a--;
				}
				if(S.charAt(i) == '1') {
					a++;
					K--;
				}else if(S.charAt(i) == '2') {
					K -= 2;
					a += 2;
				}
			}
			System.out.println(cnt);
			System.exit(0);
		}
		cnt = 0;
		int t = l - a;
		int c = 0;
		int d = 0;
		for(int i = 0; i < N; i++) {
			if(d == 0) {
				c++;
			}else {
				d--;
			}
			if(S.charAt(i) == '1') {
				d++;
			}else if(S.charAt(i) == '2') {
				d += 2;
			}
		}
		if(K % N == 0) {
			int ans = t * (K / N - 1) + c;
			System.out.println(ans);
		}else {
			int b = K / N;
			int res = K - b * N;
			for(int i = 0; i < res; i++) {
				if(d == 0) {
					c++;
				}else {
					d--;
				}
				if(S.charAt(i) == '1') {
					d++;
				}else if(S.charAt(i) == '2') {
					d += 2;
				}
			}
			int ans = (b - 1) * (N - 1) + c;
			System.out.println(ans);
		}

	}
}
0