結果
問題 | No.2922 Rose Garden |
ユーザー | YuuuT |
提出日時 | 2024-10-12 16:30:28 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 951 bytes |
コンパイル時間 | 160 ms |
コンパイル使用メモリ | 82,688 KB |
実行使用メモリ | 100,480 KB |
最終ジャッジ日時 | 2024-10-12 16:30:36 |
合計ジャッジ時間 | 6,301 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 102 ms
93,184 KB |
testcase_01 | AC | 82 ms
81,408 KB |
testcase_02 | AC | 93 ms
91,008 KB |
testcase_03 | AC | 124 ms
99,328 KB |
testcase_04 | AC | 96 ms
92,928 KB |
testcase_05 | AC | 78 ms
83,840 KB |
testcase_06 | AC | 81 ms
80,256 KB |
testcase_07 | AC | 101 ms
100,480 KB |
testcase_08 | AC | 65 ms
71,040 KB |
testcase_09 | AC | 116 ms
98,688 KB |
testcase_10 | AC | 66 ms
73,088 KB |
testcase_11 | AC | 60 ms
67,968 KB |
testcase_12 | AC | 80 ms
87,424 KB |
testcase_13 | AC | 104 ms
98,048 KB |
testcase_14 | AC | 59 ms
66,432 KB |
testcase_15 | AC | 97 ms
91,008 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 87 ms
84,608 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 108 ms
95,488 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 57 ms
63,616 KB |
testcase_31 | AC | 54 ms
61,440 KB |
testcase_32 | AC | 56 ms
62,464 KB |
testcase_33 | AC | 55 ms
61,312 KB |
testcase_34 | AC | 54 ms
63,360 KB |
testcase_35 | AC | 56 ms
61,952 KB |
testcase_36 | AC | 57 ms
64,384 KB |
testcase_37 | AC | 59 ms
65,664 KB |
testcase_38 | AC | 56 ms
62,720 KB |
testcase_39 | AC | 58 ms
64,640 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 | 48 ms
54,400 KB |
testcase_51 | AC | 49 ms
54,528 KB |
testcase_52 | AC | 49 ms
54,656 KB |
ソースコード
# oj t -c "python3 main.py" import sys,math from collections import defaultdict,deque from itertools import combinations,permutations,accumulate,product from bisect import bisect_left,bisect_right from heapq import heappop,heappush,heapify #from more_itertools import distinct_permutations,distinct_combinations #from sortedcontainers import SortedList,SortedSet def input():return sys.stdin.readline().rstrip() def ii(): return int(input()) def ms(): return map(int, input().split()) def li(): return list(map(int,input().split())) inf = pow(10,18) mod = 998244353 #///////////////////////////////// # 切り上げ除算 def celiDiv(p : int, q : int) -> int: return (p + q -1) // q N,S,B = ms() H = li() tmp = H[0] now = S for i in range(N-1): if tmp-H[i]<S-now: tmp = H[i]; now = S if tmp<H[i+1]: if now<celiDiv(H[i+1]-tmp,B): print('No') exit() aa = celiDiv(H[i+1]-tmp,B) tmp += B*aa now -= aa print('Yes')