結果
問題 | No.78 クジ付きアイスバー |
ユーザー | uafr_cs |
提出日時 | 2015-06-17 01:07:10 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,318 bytes |
コンパイル時間 | 2,138 ms |
コンパイル使用メモリ | 78,220 KB |
実行使用メモリ | 45,740 KB |
最終ジャッジ日時 | 2024-10-06 17:06:15 |
合計ジャッジ時間 | 11,257 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 114 ms
41,120 KB |
testcase_02 | AC | 113 ms
40,856 KB |
testcase_03 | AC | 101 ms
39,924 KB |
testcase_04 | AC | 115 ms
41,272 KB |
testcase_05 | AC | 116 ms
41,056 KB |
testcase_06 | AC | 117 ms
40,408 KB |
testcase_07 | AC | 107 ms
40,620 KB |
testcase_08 | AC | 105 ms
39,924 KB |
testcase_09 | AC | 119 ms
40,936 KB |
testcase_10 | AC | 109 ms
40,444 KB |
testcase_11 | AC | 112 ms
40,828 KB |
testcase_12 | AC | 104 ms
40,088 KB |
testcase_13 | AC | 115 ms
41,148 KB |
testcase_14 | AC | 112 ms
41,240 KB |
testcase_15 | AC | 114 ms
41,196 KB |
testcase_16 | AC | 110 ms
40,976 KB |
testcase_17 | AC | 119 ms
40,940 KB |
testcase_18 | AC | 122 ms
41,280 KB |
testcase_19 | TLE | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
import java.math.BigDecimal; import java.util.Arrays; import java.util.Scanner; public class Main { public static long simulate(final int N, int[] S, long K, final long initial_bonus){ long bonus = initial_bonus; long cost = 0; for(long i = 0; i < K; i++){ final int index = (int)(i % N); if(bonus > 0){ bonus--; }else{ cost++; } bonus += S[index]; } return cost; } public static void main(String[] args){ Scanner sc = new Scanner(System.in); final int N = sc.nextInt(); final long K = sc.nextLong(); char[] inputs = sc.next().toCharArray(); int[] S = new int[N]; for(int i = 0; i < N; i++){ S[i] = Character.getNumericValue(inputs[i]); } int one_cycle_cost = 0, one_cycle_bonus = 0; for(int i = 0; i < N; i++){ if(one_cycle_bonus > 0){ one_cycle_bonus--; }else{ one_cycle_cost++; } one_cycle_bonus += S[i]; } if(one_cycle_bonus > 0){ final int infinit_turns = (one_cycle_cost + one_cycle_bonus - 1) / one_cycle_bonus; final long infinite_N = infinit_turns * N; if(infinite_N <= N){ System.out.println(infinit_turns * one_cycle_cost); }else{ System.out.println(simulate(N, S, K, 0)); } }else{ System.out.println((K / N * one_cycle_cost) + simulate(N, S, K % N, 0)); } } }