結果

問題 No.78 クジ付きアイスバー
ユーザー ぴろずぴろず
提出日時 2014-12-09 21:35:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 1,161 bytes
コンパイル時間 2,085 ms
コンパイル使用メモリ 77,396 KB
実行使用メモリ 41,504 KB
最終ジャッジ日時 2024-11-08 00:26:13
合計ジャッジ時間 7,918 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,364 KB
testcase_01 AC 109 ms
39,968 KB
testcase_02 AC 125 ms
41,504 KB
testcase_03 AC 125 ms
41,148 KB
testcase_04 AC 126 ms
41,432 KB
testcase_05 AC 126 ms
41,312 KB
testcase_06 AC 125 ms
41,092 KB
testcase_07 AC 113 ms
39,880 KB
testcase_08 AC 109 ms
40,116 KB
testcase_09 AC 122 ms
41,312 KB
testcase_10 AC 111 ms
40,212 KB
testcase_11 AC 123 ms
40,920 KB
testcase_12 AC 111 ms
39,900 KB
testcase_13 AC 111 ms
40,124 KB
testcase_14 AC 124 ms
41,388 KB
testcase_15 AC 126 ms
41,172 KB
testcase_16 AC 124 ms
41,276 KB
testcase_17 AC 122 ms
41,200 KB
testcase_18 AC 126 ms
40,340 KB
testcase_19 AC 123 ms
41,344 KB
testcase_20 AC 119 ms
41,060 KB
testcase_21 AC 127 ms
41,356 KB
testcase_22 AC 125 ms
41,304 KB
testcase_23 AC 124 ms
41,372 KB
testcase_24 AC 130 ms
41,496 KB
testcase_25 AC 126 ms
41,072 KB
testcase_26 AC 120 ms
40,048 KB
testcase_27 AC 126 ms
40,952 KB
testcase_28 AC 126 ms
40,920 KB
testcase_29 AC 108 ms
39,364 KB
testcase_30 AC 125 ms
41,180 KB
testcase_31 AC 120 ms
41,280 KB
testcase_32 AC 110 ms
39,772 KB
testcase_33 AC 125 ms
41,200 KB
testcase_34 AC 116 ms
40,664 KB
testcase_35 AC 112 ms
39,976 KB
testcase_36 AC 126 ms
41,144 KB
testcase_37 AC 120 ms
41,380 KB
testcase_38 AC 106 ms
40,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no078;

import java.util.Scanner;

public class Main {

	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();
		Pair[] bef = new Pair[n];
		int bought = 0;
		int eaten = 0;
		int index = 0;
		boolean naive = false;
		while(true) {
			if (!naive && bef[index] != null) {
				int d = eaten - bef[index].eaten;
				int units = (k-eaten) / d;
				eaten += units * d;
				bought += units * (bought - bef[index].bought);
				naive = true;
				if (eaten >= k) {
					break;
				}
			}
			if (!naive) {
				bef[index] = new Pair(bought,eaten);
			}
			bought++;
			int atari = 1;
			for(int i=0;i<=n;i++) {
				atari--;
				eaten++;
				atari += s[index] - '0';
				index = (index + 1) % n;
				if (atari == 0) {
					break;
				}
				if (i == n) {
					eaten = k;
				}
			}
			if (eaten >= k) {
				break;
			}
		}
		System.out.println(bought);
	}

	static class Pair {
		int bought,eaten;
		public Pair(int bought,int eaten) {
			this.bought = bought;
			this.eaten = eaten;
		}
	}

}
0