結果

問題 No.78 クジ付きアイスバー
ユーザー holegumaholeguma
提出日時 2015-08-14 14:45:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 1,014 bytes
コンパイル時間 4,153 ms
コンパイル使用メモリ 76,884 KB
実行使用メモリ 37,104 KB
最終ジャッジ日時 2024-11-08 01:30:04
合計ジャッジ時間 5,705 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,068 KB
testcase_01 AC 52 ms
36,508 KB
testcase_02 AC 52 ms
37,012 KB
testcase_03 AC 54 ms
36,976 KB
testcase_04 AC 55 ms
37,048 KB
testcase_05 AC 52 ms
36,916 KB
testcase_06 AC 53 ms
36,796 KB
testcase_07 AC 53 ms
37,064 KB
testcase_08 AC 53 ms
36,924 KB
testcase_09 AC 53 ms
36,840 KB
testcase_10 AC 53 ms
36,636 KB
testcase_11 AC 53 ms
36,804 KB
testcase_12 AC 53 ms
37,040 KB
testcase_13 AC 54 ms
36,884 KB
testcase_14 AC 52 ms
36,948 KB
testcase_15 AC 52 ms
36,804 KB
testcase_16 AC 53 ms
36,712 KB
testcase_17 AC 51 ms
36,896 KB
testcase_18 AC 52 ms
36,900 KB
testcase_19 AC 52 ms
36,928 KB
testcase_20 AC 51 ms
37,104 KB
testcase_21 AC 53 ms
36,844 KB
testcase_22 AC 53 ms
36,636 KB
testcase_23 AC 54 ms
36,936 KB
testcase_24 AC 54 ms
37,064 KB
testcase_25 AC 55 ms
36,804 KB
testcase_26 AC 52 ms
36,736 KB
testcase_27 AC 54 ms
37,068 KB
testcase_28 AC 52 ms
36,496 KB
testcase_29 AC 51 ms
37,064 KB
testcase_30 AC 55 ms
36,920 KB
testcase_31 AC 54 ms
36,924 KB
testcase_32 AC 53 ms
37,040 KB
testcase_33 AC 53 ms
37,052 KB
testcase_34 AC 53 ms
37,040 KB
testcase_35 AC 52 ms
36,880 KB
testcase_36 AC 51 ms
36,884 KB
testcase_37 AC 56 ms
36,428 KB
testcase_38 AC 54 ms
37,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.StringTokenizer;

class Main{

static final PrintWriter out=new PrintWriter(System.out);
static int cnt;

public static void main(String[] args) throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String line="";
while((line=br.readLine())!=null&&!line.isEmpty()){
StringTokenizer st= new StringTokenizer(line);
int n=Integer.parseInt(st.nextToken());
int k=Integer.parseInt(st.nextToken());
int[] ice=new int[n];
line=br.readLine();
int hitiol=0;
int hit=0;
long ans=0;
long cnt=0;
for(int i=0;i<n;i++){
ice[i]=line.charAt(i)-'0';
hitiol+=ice[i];
}
if(k<n){
for(int i=0;i<k;i++){
hit--;
if(hit<0){
ans++;
hit++;
}
hit+=ice[i];
}
out.println(ans);
}
else{
for(int i=0;i<n;i++){
hit--;
if(hit<0){
ans++;
hit++;
}
hit+=ice[i];
}
if(hitiol>=n){
out.println(ans);
}
else{
int loop=(int)k/n-1;
ans+=(n-hitiol)*loop;
int rest=k%n;
for(int i=0;i<rest;i++){
hit--;
if(hit<0){
ans++; hit++;
}
hit+=ice[i];
}
out.println(ans);
}
}
out.flush();
}
}
}
0