結果

問題 No.78 クジ付きアイスバー
ユーザー はまやんはまやんはまやんはまやん
提出日時 2015-06-25 00:16:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 1,488 bytes
コンパイル時間 2,364 ms
コンパイル使用メモリ 77,264 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-11-08 00:33:29
合計ジャッジ時間 7,793 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,052 KB
testcase_01 AC 122 ms
41,044 KB
testcase_02 AC 111 ms
39,904 KB
testcase_03 AC 121 ms
40,964 KB
testcase_04 AC 119 ms
41,424 KB
testcase_05 AC 112 ms
39,904 KB
testcase_06 AC 123 ms
41,160 KB
testcase_07 AC 125 ms
41,144 KB
testcase_08 AC 112 ms
40,640 KB
testcase_09 AC 120 ms
40,980 KB
testcase_10 AC 125 ms
40,948 KB
testcase_11 AC 119 ms
41,108 KB
testcase_12 AC 118 ms
41,252 KB
testcase_13 AC 106 ms
40,132 KB
testcase_14 AC 118 ms
41,056 KB
testcase_15 AC 122 ms
41,076 KB
testcase_16 AC 119 ms
40,136 KB
testcase_17 AC 110 ms
40,220 KB
testcase_18 AC 124 ms
41,224 KB
testcase_19 AC 124 ms
41,084 KB
testcase_20 AC 124 ms
40,776 KB
testcase_21 AC 124 ms
40,968 KB
testcase_22 AC 104 ms
39,532 KB
testcase_23 AC 116 ms
39,936 KB
testcase_24 AC 117 ms
41,108 KB
testcase_25 AC 108 ms
39,964 KB
testcase_26 AC 106 ms
40,000 KB
testcase_27 AC 122 ms
41,284 KB
testcase_28 AC 105 ms
40,200 KB
testcase_29 AC 107 ms
40,044 KB
testcase_30 AC 120 ms
40,960 KB
testcase_31 AC 109 ms
40,024 KB
testcase_32 AC 123 ms
41,264 KB
testcase_33 AC 124 ms
41,192 KB
testcase_34 AC 121 ms
41,472 KB
testcase_35 AC 123 ms
41,204 KB
testcase_36 AC 122 ms
41,148 KB
testcase_37 AC 123 ms
41,248 KB
testcase_38 AC 124 ms
41,180 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 = 0; k < N; k++) {
			if (freebar > 0) 
				freebar--;
			else 
				buybar++;
			
			switch (S.charAt(k)) {
			case '0': break;
			case '1': freebar++;  break;
			case '2': freebar+=2; break;
			}
			
			if((k+1) == K)
			{
				System.out.println(buybar);
				return;
			}
		}
		
		// 一周するときに
		int loopbuy = buybar;
		int loopfree = freebar;
		
		if(loopbuy <= loopfree)
		{
			System.out.println(loopbuy);
			return;
		}
		
		buybar = 0;
		nextbar = 0;
		freebar = 0;
		
		int loop = K/N;
		
		int k = loop * N;
		freebar = loopfree;
		buybar = loopbuy + (loopbuy - loopfree) * (loop - 1);
		
		/*for (int i = 0; i < loop; i++) {
			if(freebar >= loopbuy)
			{
				freebar -= loopbuy;
			}
			else {
				buybar += loopbuy - freebar;
				freebar = 0;
			}
			
			freebar += loopfree;
		}*/
		for (; k < K; k++) {
			if (freebar > 0) 
				freebar--;
			else 
				buybar++;
			
			switch (S.charAt(k%N)) {
			case '0': break;
			case '1': freebar++;  break;
			case '2': freebar+=2; break;
			}
		}
		
		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