結果
問題 | No.2922 Rose Garden |
ユーザー | YuuuT |
提出日時 | 2024-10-12 15:50:26 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 960 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 99,456 KB |
最終ジャッジ日時 | 2024-10-12 15:50:43 |
合計ジャッジ時間 | 5,247 ms |
ジャッジサーバーID (参考情報) |
judge / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 64 ms
87,808 KB |
testcase_01 | AC | 54 ms
76,800 KB |
testcase_02 | AC | 63 ms
87,168 KB |
testcase_03 | AC | 90 ms
99,456 KB |
testcase_04 | AC | 63 ms
87,296 KB |
testcase_05 | AC | 64 ms
84,296 KB |
testcase_06 | AC | 61 ms
75,988 KB |
testcase_07 | AC | 79 ms
99,016 KB |
testcase_08 | AC | 55 ms
68,552 KB |
testcase_09 | AC | 94 ms
98,648 KB |
testcase_10 | AC | 54 ms
73,888 KB |
testcase_11 | AC | 49 ms
69,508 KB |
testcase_12 | AC | 63 ms
87,840 KB |
testcase_13 | AC | 81 ms
94,988 KB |
testcase_14 | AC | 48 ms
67,364 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 | 44 ms
63,872 KB |
testcase_31 | AC | 44 ms
62,012 KB |
testcase_32 | AC | 47 ms
62,824 KB |
testcase_33 | AC | 51 ms
63,900 KB |
testcase_34 | AC | 44 ms
63,932 KB |
testcase_35 | AC | 45 ms
63,744 KB |
testcase_36 | AC | 47 ms
65,640 KB |
testcase_37 | AC | 45 ms
67,628 KB |
testcase_38 | AC | 43 ms
63,992 KB |
testcase_39 | AC | 46 ms
66,196 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 | 39 ms
54,656 KB |
testcase_51 | AC | 39 ms
54,528 KB |
testcase_52 | AC | 38 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() tmp += B*celiDiv(H[i+1]-H[i],B) now -= celiDiv(H[i+1]-H[i],B) print('Yes')