結果

問題 No.78 クジ付きアイスバー
ユーザー chocoruskchocorusk
提出日時 2020-10-03 10:57:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 1,006 bytes
コンパイル時間 1,993 ms
コンパイル使用メモリ 77,728 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-07-18 04:11:55
合計ジャッジ時間 7,624 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
54,272 KB
testcase_01 AC 119 ms
54,008 KB
testcase_02 AC 105 ms
52,956 KB
testcase_03 AC 118 ms
53,936 KB
testcase_04 AC 104 ms
52,680 KB
testcase_05 AC 115 ms
54,240 KB
testcase_06 AC 102 ms
52,948 KB
testcase_07 AC 101 ms
52,920 KB
testcase_08 AC 114 ms
54,288 KB
testcase_09 AC 104 ms
52,788 KB
testcase_10 AC 116 ms
53,872 KB
testcase_11 AC 98 ms
53,012 KB
testcase_12 AC 109 ms
52,920 KB
testcase_13 AC 101 ms
52,956 KB
testcase_14 AC 115 ms
53,868 KB
testcase_15 AC 110 ms
54,068 KB
testcase_16 AC 107 ms
52,560 KB
testcase_17 AC 114 ms
54,024 KB
testcase_18 AC 105 ms
53,052 KB
testcase_19 AC 110 ms
52,772 KB
testcase_20 AC 113 ms
53,932 KB
testcase_21 AC 113 ms
53,988 KB
testcase_22 AC 103 ms
52,820 KB
testcase_23 AC 110 ms
52,816 KB
testcase_24 AC 103 ms
53,956 KB
testcase_25 AC 115 ms
54,000 KB
testcase_26 AC 113 ms
54,120 KB
testcase_27 AC 110 ms
53,904 KB
testcase_28 AC 117 ms
54,188 KB
testcase_29 AC 113 ms
53,912 KB
testcase_30 AC 100 ms
52,812 KB
testcase_31 AC 114 ms
54,064 KB
testcase_32 AC 113 ms
54,008 KB
testcase_33 AC 109 ms
53,584 KB
testcase_34 AC 106 ms
53,436 KB
testcase_35 AC 111 ms
53,976 KB
testcase_36 AC 115 ms
53,924 KB
testcase_37 AC 105 ms
52,684 KB
testcase_38 AC 111 ms
53,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Scanner;

public class Main{
	public static void main(String[] args) {
		Scanner scanner=new Scanner(System.in);
		PrintWriter out=new PrintWriter(System.out);
		int n=Integer.parseInt(scanner.next());
		long k=Long.parseLong(scanner.next());
		String s=scanner.next();
		long[][] nx=new long[32][51];
		final long INF=(long)1e12;
		for(int i=0; i<n; i++) {
			int sum=0;
			for(int j=i; j<i+n; j++) {
				int x=s.charAt(j%n)-'0';
				sum+=x;
				if(sum+1==j-i+1) {
					nx[0][i]=j+1;
					break;
				}
			}
			if(nx[0][i]==0) {
				nx[0][i]=INF;
			}
		}
		for(int i=1; i<=30; i++) {
			for(int j=0; j<n; j++) {
				long x=nx[i-1][j];
				if(x==INF) {
					nx[i][j]=INF;
				}else{
					nx[i][j]=Math.min(INF, x/n*n+nx[i-1][(int) (x%n)]);
				}
			}
		}
		long ans=0;
		int x=0;
		for(int i=30; i>=0; i--) {
			if(nx[i][x]<k) {
				ans+=(1<<i);
				k-=nx[i][x]/n*n;
				x=(int)(nx[i][x]%n);
			}
		}
		out.println(ans+1);
		out.close();
		scanner.close();
	}
}
0