結果

問題 No.78 クジ付きアイスバー
ユーザー jp_stejp_ste
提出日時 2016-05-11 17:16:05
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 914 bytes
コンパイル時間 2,087 ms
コンパイル使用メモリ 75,088 KB
実行使用メモリ 41,296 KB
最終ジャッジ日時 2024-10-06 19:19:21
合計ジャッジ時間 54,516 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,052 KB
testcase_01 AC 126 ms
40,956 KB
testcase_02 AC 125 ms
40,964 KB
testcase_03 AC 128 ms
40,876 KB
testcase_04 AC 123 ms
41,244 KB
testcase_05 AC 640 ms
41,000 KB
testcase_06 AC 1,645 ms
41,148 KB
testcase_07 AC 660 ms
40,892 KB
testcase_08 AC 808 ms
40,896 KB
testcase_09 AC 2,519 ms
40,148 KB
testcase_10 AC 1,429 ms
40,228 KB
testcase_11 AC 743 ms
39,976 KB
testcase_12 AC 2,926 ms
41,000 KB
testcase_13 AC 2,411 ms
40,860 KB
testcase_14 AC 2,527 ms
40,996 KB
testcase_15 AC 1,247 ms
40,216 KB
testcase_16 AC 1,880 ms
41,028 KB
testcase_17 AC 2,200 ms
39,980 KB
testcase_18 AC 2,025 ms
39,860 KB
testcase_19 AC 2,529 ms
40,996 KB
testcase_20 AC 2,926 ms
41,004 KB
testcase_21 AC 3,227 ms
41,160 KB
testcase_22 AC 2,886 ms
41,112 KB
testcase_23 AC 125 ms
41,020 KB
testcase_24 AC 126 ms
40,868 KB
testcase_25 AC 124 ms
40,924 KB
testcase_26 AC 126 ms
40,996 KB
testcase_27 AC 111 ms
40,104 KB
testcase_28 AC 127 ms
40,796 KB
testcase_29 AC 113 ms
39,788 KB
testcase_30 AC 148 ms
41,012 KB
testcase_31 AC 146 ms
40,944 KB
testcase_32 AC 148 ms
40,956 KB
testcase_33 AC 163 ms
41,020 KB
testcase_34 AC 802 ms
40,976 KB
testcase_35 AC 1,529 ms
40,852 KB
testcase_36 AC 2,480 ms
40,876 KB
testcase_37 TLE -
testcase_38 AC 2,768 ms
40,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            int n = Integer.parseInt(scan.next());
            int k = Integer.parseInt(scan.next());
            String s = scan.next();
            
            int buy = 0;
            int stack = 0;
            int sum = 0;
            int index = 0;
            
            while(true) {
                
                if(stack == 0) {
                    buy++;
                    sum++;
                } else {
                    stack--;
                }
                
                int now = s.charAt(index) - '0';
                stack += now;
                sum += now;
                if(++index == s.length()) index = 0;
                
                if(sum >= k) break;
            }
            System.out.println(buy);
        }
    }
}
0