結果

問題 No.2919 Welcome to The Below Green Contenst
ユーザー prin_kemkemprin_kemkem
提出日時 2024-10-12 14:31:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 57,592 KB
最終ジャッジ日時 2024-10-12 14:31:52
合計ジャッジ時間 1,748 ms
ジャッジサーバーID
(参考情報)
judge / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,736 KB
testcase_01 AC 40 ms
56,204 KB
testcase_02 AC 43 ms
56,756 KB
testcase_03 AC 41 ms
56,728 KB
testcase_04 AC 40 ms
56,240 KB
testcase_05 AC 40 ms
56,324 KB
testcase_06 AC 40 ms
56,664 KB
testcase_07 AC 40 ms
56,488 KB
testcase_08 AC 40 ms
56,360 KB
testcase_09 AC 41 ms
56,144 KB
testcase_10 AC 41 ms
56,292 KB
testcase_11 AC 42 ms
57,032 KB
testcase_12 AC 41 ms
56,320 KB
testcase_13 AC 43 ms
55,952 KB
testcase_14 AC 40 ms
56,684 KB
testcase_15 AC 41 ms
56,044 KB
testcase_16 AC 41 ms
55,808 KB
testcase_17 AC 42 ms
56,456 KB
testcase_18 AC 40 ms
55,880 KB
testcase_19 AC 41 ms
57,592 KB
testcase_20 AC 43 ms
57,332 KB
testcase_21 AC 41 ms
56,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
#from functools import cache
# import copy
from itertools import combinations, permutations, product, accumulate, groupby, chain
#from more_itertools import distinct_permutations
from heapq import heapify, heappop, heappush
import math
import bisect
#from pprint import pprint
from random import randint, shuffle, randrange
#from sortedcontainers import SortedSet, SortedList, SortedDict
import sys
# sys.setrecursionlimit(2000000)
input = lambda: sys.stdin.readline().rstrip('\n')
inf = float('inf')
mod1 = 10**9+7
mod2 = 998244353
def ceil_div(x, y): return -(-x//y)

#################################################   

N, M, K = map(int, input().split())
print('Yes' if M+K <= N else 'No')
0