結果
問題 | No.2056 非力なレッド |
ユーザー | tenten |
提出日時 | 2024-07-30 12:59:05 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,648 bytes |
コンパイル時間 | 2,157 ms |
コンパイル使用メモリ | 78,148 KB |
実行使用メモリ | 66,328 KB |
最終ジャッジ日時 | 2024-07-30 12:59:13 |
合計ジャッジ時間 | 7,291 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
57,344 KB |
testcase_01 | AC | 50 ms
49,972 KB |
testcase_02 | AC | 48 ms
50,240 KB |
testcase_03 | AC | 48 ms
50,260 KB |
testcase_04 | AC | 49 ms
50,388 KB |
testcase_05 | AC | 48 ms
50,520 KB |
testcase_06 | AC | 47 ms
50,228 KB |
testcase_07 | AC | 47 ms
50,312 KB |
testcase_08 | AC | 49 ms
50,088 KB |
testcase_09 | AC | 49 ms
50,332 KB |
testcase_10 | AC | 47 ms
49,896 KB |
testcase_11 | AC | 46 ms
50,268 KB |
testcase_12 | AC | 47 ms
50,588 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
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 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int target = sc.nextInt(); int m = sc.nextInt(); int[] values = new int[n + 1]; for (int i = 1; i <= n; i++) { values[i] = sc.nextInt(); } int count = 0; for (int i = n; i >= 1 && count <= m; i--) { for (int j = 0; j < count; j++) { values[i] >>= 1; } while (values[i] > target) { values[i] >>= 1; count += i; } } System.out.println(count <= m ? "Yes" : "No"); } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }