結果

問題 No.78 クジ付きアイスバー
ユーザー mitsuomitsuo
提出日時 2016-05-07 18:52:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 1,937 bytes
コンパイル時間 2,584 ms
コンパイル使用メモリ 79,968 KB
実行使用メモリ 41,376 KB
最終ジャッジ日時 2024-11-08 01:44:27
合計ジャッジ時間 8,780 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,080 KB
testcase_01 AC 130 ms
41,220 KB
testcase_02 AC 129 ms
41,232 KB
testcase_03 AC 130 ms
41,376 KB
testcase_04 AC 131 ms
41,352 KB
testcase_05 AC 128 ms
40,812 KB
testcase_06 AC 128 ms
41,200 KB
testcase_07 AC 129 ms
41,044 KB
testcase_08 AC 118 ms
40,092 KB
testcase_09 AC 128 ms
40,992 KB
testcase_10 AC 128 ms
40,988 KB
testcase_11 AC 131 ms
41,328 KB
testcase_12 AC 131 ms
40,936 KB
testcase_13 AC 132 ms
41,116 KB
testcase_14 AC 129 ms
41,152 KB
testcase_15 AC 128 ms
41,064 KB
testcase_16 AC 131 ms
41,132 KB
testcase_17 AC 129 ms
41,172 KB
testcase_18 AC 131 ms
41,356 KB
testcase_19 AC 130 ms
41,116 KB
testcase_20 AC 129 ms
41,240 KB
testcase_21 AC 132 ms
41,288 KB
testcase_22 AC 128 ms
41,056 KB
testcase_23 AC 130 ms
41,208 KB
testcase_24 AC 116 ms
40,156 KB
testcase_25 AC 116 ms
39,936 KB
testcase_26 AC 119 ms
40,036 KB
testcase_27 AC 129 ms
41,124 KB
testcase_28 AC 129 ms
41,084 KB
testcase_29 AC 130 ms
41,104 KB
testcase_30 AC 130 ms
41,204 KB
testcase_31 AC 131 ms
41,120 KB
testcase_32 AC 129 ms
41,056 KB
testcase_33 AC 129 ms
40,996 KB
testcase_34 AC 129 ms
41,024 KB
testcase_35 AC 132 ms
40,928 KB
testcase_36 AC 129 ms
41,244 KB
testcase_37 AC 128 ms
41,232 KB
testcase_38 AC 130 ms
41,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package jp.fedom.challange.yuki.l2.q78;

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		List<String> input = new ArrayList<>();
		while (sc.hasNext()) {
			input.add(sc.nextLine());
		}

		System.out.println(solve(input));

		sc.close();
	}

	public static long solve_slow(List<String> in) {
		int N = Integer.valueOf(in.get(0).split(" ")[0]);
		long K = Long.valueOf(in.get(0).split(" ")[1]);
		int[] ice = new int[N];
		int iceTotal = 0;
		for (int i = 0; i < in.get(1).length(); i++) {
			ice[i] = Integer.valueOf(in.get(1).substring(i, i + 1));
			iceTotal += ice[i];
		}

		long p = 0;
		int stock = 0;
		for (long i = 0; i < K; i++) {
			if (i == N) {
				if (iceTotal >= N) {
					break;
				}
			}

			if (stock == 0) {
				p++;
			} else {
				stock--;
			}

			int r = ice[(int) (i % N)];
			if (r != 0) {
				stock += r;
			}

		}

		return p;
	}

	public static long solve(List<String> in) {
		int N = Integer.valueOf(in.get(0).split(" ")[0]);
		long K = Long.valueOf(in.get(0).split(" ")[1]);
		int[] ice = new int[N];
		int iceTotal = 0;
		for (int i = 0; i < in.get(1).length(); i++) {
			ice[i] = Integer.valueOf(in.get(1).substring(i, i + 1));
			iceTotal += ice[i];
		}

		long p = 0;
		int stock = 0;
		for (long i = 0; i < K; i++) {
			if (i == N) {
				if (iceTotal >= N) {
					break;
				} else if (iceTotal < N) {
					int diff = N - iceTotal;
					// System.out.println(p + " " + i + " " + diff);
					if ((K / N) - 2 > 0) {
						long skip = (K / N) - 2;
						p += skip * diff;
						i += skip * N;
					}
					// System.out.println(p + " " + i);
				}
			}
			// System.out.println("pis " + p + " " + i + " " + stock);

			if (stock == 0) {
				p++;
			} else {
				stock--;
			}

			int r = ice[(int) (i % N)];
			if (r != 0) {
				stock += r;
			}

		}

		return p;
	}

}
0