結果
問題 | No.78 クジ付きアイスバー |
ユーザー | holeguma |
提出日時 | 2015-08-14 14:42:34 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,010 bytes |
コンパイル時間 | 2,250 ms |
コンパイル使用メモリ | 77,620 KB |
実行使用メモリ | 50,688 KB |
最終ジャッジ日時 | 2024-10-06 18:19:05 |
合計ジャッジ時間 | 5,571 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
50,408 KB |
testcase_01 | AC | 54 ms
50,196 KB |
testcase_02 | AC | 54 ms
50,320 KB |
testcase_03 | AC | 55 ms
50,024 KB |
testcase_04 | AC | 55 ms
50,444 KB |
testcase_05 | AC | 55 ms
49,912 KB |
testcase_06 | AC | 54 ms
50,248 KB |
testcase_07 | AC | 54 ms
50,248 KB |
testcase_08 | AC | 54 ms
50,424 KB |
testcase_09 | AC | 54 ms
50,100 KB |
testcase_10 | AC | 54 ms
50,420 KB |
testcase_11 | AC | 54 ms
50,484 KB |
testcase_12 | AC | 55 ms
50,152 KB |
testcase_13 | AC | 55 ms
50,236 KB |
testcase_14 | AC | 54 ms
50,236 KB |
testcase_15 | AC | 56 ms
50,420 KB |
testcase_16 | AC | 55 ms
50,424 KB |
testcase_17 | AC | 55 ms
50,384 KB |
testcase_18 | AC | 55 ms
50,352 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 55 ms
50,336 KB |
testcase_24 | AC | 56 ms
50,272 KB |
testcase_25 | AC | 56 ms
50,356 KB |
testcase_26 | AC | 55 ms
50,116 KB |
testcase_27 | AC | 54 ms
50,064 KB |
testcase_28 | AC | 55 ms
50,180 KB |
testcase_29 | AC | 55 ms
50,128 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 | 55 ms
50,352 KB |
ソースコード
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(); } } }