結果

問題 No.78 クジ付きアイスバー
ユーザー holegumaholeguma
提出日時 2015-08-14 14:42:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,010 bytes
コンパイル時間 2,243 ms
コンパイル使用メモリ 77,052 KB
実行使用メモリ 37,376 KB
最終ジャッジ日時 2024-04-16 05:39:57
合計ジャッジ時間 5,442 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,860 KB
testcase_01 AC 52 ms
37,020 KB
testcase_02 AC 52 ms
37,208 KB
testcase_03 AC 53 ms
37,116 KB
testcase_04 AC 53 ms
36,884 KB
testcase_05 AC 52 ms
37,048 KB
testcase_06 AC 53 ms
37,268 KB
testcase_07 AC 52 ms
36,724 KB
testcase_08 AC 53 ms
37,196 KB
testcase_09 AC 54 ms
37,280 KB
testcase_10 AC 53 ms
36,988 KB
testcase_11 AC 53 ms
37,156 KB
testcase_12 AC 53 ms
37,208 KB
testcase_13 AC 54 ms
36,992 KB
testcase_14 AC 57 ms
36,736 KB
testcase_15 AC 53 ms
36,760 KB
testcase_16 AC 52 ms
36,748 KB
testcase_17 AC 54 ms
37,204 KB
testcase_18 AC 52 ms
36,984 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 53 ms
36,984 KB
testcase_24 AC 52 ms
37,196 KB
testcase_25 AC 53 ms
37,340 KB
testcase_26 AC 54 ms
37,136 KB
testcase_27 AC 54 ms
37,152 KB
testcase_28 AC 54 ms
37,156 KB
testcase_29 AC 55 ms
36,632 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 53 ms
37,120 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+=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