結果

問題 No.2919 Welcome to The Below Green Contenst
ユーザー YuuuTYuuuT
提出日時 2024-10-12 15:37:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 55,980 KB
最終ジャッジ日時 2024-10-12 15:37:04
合計ジャッジ時間 1,810 ms
ジャッジサーバーID
(参考情報)
judge2 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,876 KB
testcase_01 AC 46 ms
54,860 KB
testcase_02 AC 40 ms
55,452 KB
testcase_03 AC 39 ms
55,868 KB
testcase_04 AC 39 ms
55,184 KB
testcase_05 AC 41 ms
55,920 KB
testcase_06 AC 41 ms
54,740 KB
testcase_07 AC 42 ms
55,980 KB
testcase_08 AC 40 ms
55,136 KB
testcase_09 AC 41 ms
55,688 KB
testcase_10 AC 40 ms
54,948 KB
testcase_11 AC 39 ms
55,012 KB
testcase_12 AC 40 ms
54,892 KB
testcase_13 AC 42 ms
55,508 KB
testcase_14 AC 44 ms
55,796 KB
testcase_15 AC 41 ms
55,260 KB
testcase_16 AC 40 ms
54,592 KB
testcase_17 AC 41 ms
54,712 KB
testcase_18 AC 40 ms
54,936 KB
testcase_19 AC 39 ms
55,384 KB
testcase_20 AC 40 ms
55,184 KB
testcase_21 AC 38 ms
55,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 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
#/////////////////////////////////
N,M,K = ms()
if N>=M+K:
    print('Yes')
else:
    print('No')
0