結果
問題 | No.2922 Rose Garden |
ユーザー | tenten |
提出日時 | 2024-10-21 09:57:40 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,471 bytes |
コンパイル時間 | 2,627 ms |
コンパイル使用メモリ | 78,700 KB |
実行使用メモリ | 60,968 KB |
最終ジャッジ日時 | 2024-10-21 09:58:02 |
合計ジャッジ時間 | 17,094 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 221 ms
57,528 KB |
testcase_01 | AC | 174 ms
55,128 KB |
testcase_02 | AC | 233 ms
56,160 KB |
testcase_03 | AC | 258 ms
60,968 KB |
testcase_04 | AC | 230 ms
58,096 KB |
testcase_05 | AC | 193 ms
55,404 KB |
testcase_06 | AC | 170 ms
55,028 KB |
testcase_07 | AC | 247 ms
57,664 KB |
testcase_08 | AC | 152 ms
55,336 KB |
testcase_09 | AC | 254 ms
58,584 KB |
testcase_10 | AC | 190 ms
55,956 KB |
testcase_11 | AC | 149 ms
54,480 KB |
testcase_12 | AC | 224 ms
57,376 KB |
testcase_13 | AC | 240 ms
57,768 KB |
testcase_14 | AC | 138 ms
54,868 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 116 ms
52,052 KB |
testcase_31 | AC | 85 ms
51,172 KB |
testcase_32 | AC | 100 ms
51,956 KB |
testcase_33 | AC | 75 ms
51,436 KB |
testcase_34 | AC | 114 ms
52,228 KB |
testcase_35 | AC | 99 ms
51,832 KB |
testcase_36 | AC | 131 ms
52,408 KB |
testcase_37 | AC | 140 ms
54,312 KB |
testcase_38 | AC | 104 ms
51,904 KB |
testcase_39 | AC | 145 ms
52,172 KB |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | AC | 54 ms
50,452 KB |
testcase_51 | AC | 52 ms
50,408 KB |
testcase_52 | AC | 53 ms
50,256 KB |
ソースコード
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 s = sc.nextInt(); int b = sc.nextInt(); int[] heights = new int[n]; for (int i = 0; i < n; i++) { heights[i] = sc.nextInt(); } for (int i = 1; i < n; i++) { if ((heights[i] - heights[i - 1] + b - 1) / b > s) { System.out.println("No"); return; } } System.out.println("Yes"); } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); 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(); } } }