結果

問題 No.78 クジ付きアイスバー
ユーザー はまやんはまやんはまやんはまやん
提出日時 2015-06-24 23:55:20
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 720 bytes
コンパイル時間 2,202 ms
コンパイル使用メモリ 74,868 KB
実行使用メモリ 56,100 KB
最終ジャッジ日時 2024-10-06 17:09:03
合計ジャッジ時間 79,105 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,960 KB
testcase_01 AC 132 ms
54,076 KB
testcase_02 AC 135 ms
54,028 KB
testcase_03 AC 133 ms
54,296 KB
testcase_04 AC 133 ms
54,192 KB
testcase_05 AC 1,158 ms
54,276 KB
testcase_06 AC 2,868 ms
54,020 KB
testcase_07 AC 1,097 ms
53,948 KB
testcase_08 AC 1,603 ms
53,880 KB
testcase_09 TLE -
testcase_10 AC 3,363 ms
54,048 KB
testcase_11 AC 1,584 ms
54,208 KB
testcase_12 AC 2,873 ms
54,236 KB
testcase_13 AC 3,276 ms
54,376 KB
testcase_14 TLE -
testcase_15 AC 2,072 ms
54,136 KB
testcase_16 AC 2,225 ms
53,940 KB
testcase_17 AC 2,699 ms
53,844 KB
testcase_18 AC 3,960 ms
53,956 KB
testcase_19 AC 4,710 ms
54,192 KB
testcase_20 AC 3,844 ms
53,844 KB
testcase_21 TLE -
testcase_22 AC 4,387 ms
54,172 KB
testcase_23 AC 135 ms
54,144 KB
testcase_24 AC 132 ms
54,172 KB
testcase_25 AC 131 ms
54,112 KB
testcase_26 AC 134 ms
53,996 KB
testcase_27 AC 128 ms
53,700 KB
testcase_28 AC 131 ms
53,896 KB
testcase_29 AC 118 ms
53,004 KB
testcase_30 AC 133 ms
54,128 KB
testcase_31 AC 132 ms
53,764 KB
testcase_32 AC 134 ms
54,004 KB
testcase_33 AC 145 ms
53,816 KB
testcase_34 AC 1,370 ms
54,200 KB
testcase_35 AC 1,607 ms
53,928 KB
testcase_36 AC 4,374 ms
54,232 KB
testcase_37 TLE -
testcase_38 AC 2,773 ms
53,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.HashSet;
import java.util.Scanner;


public class Main {
	static int N, K;
	static String S;
			
	static private void solve()
	{
		int buybar = 0;
		int nextbar = 0;
		int freebar = 0;
		
		for (int k = 1; k <= K; k++) {
			if (freebar > 0) 
				freebar--;
			else 
				buybar++;
			
			switch (S.charAt(nextbar)) {
			case '0': break;
			case '1': freebar++;  break;
			case '2': freebar+=2; break;
			}
			
			nextbar++;
			if (nextbar == N) {
				nextbar = 0;
			}
		}
		
		System.out.println(buybar);
	}
	
	static public void main(String[] args)
	{
		Scanner sca = new Scanner(System.in);
		
		N = sca.nextInt();
		K = sca.nextInt();
		S = sca.next();
		
		solve();
	}
}
0