結果

問題 No.2919 Welcome to The Below Green Contenst
ユーザー hatonobuhatonobu
提出日時 2024-10-14 10:06:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 67,328 KB
最終ジャッジ日時 2024-10-14 10:06:40
合計ジャッジ時間 2,517 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
66,688 KB
testcase_01 AC 64 ms
67,328 KB
testcase_02 AC 73 ms
66,944 KB
testcase_03 AC 70 ms
66,816 KB
testcase_04 AC 59 ms
66,944 KB
testcase_05 AC 62 ms
67,328 KB
testcase_06 AC 61 ms
66,816 KB
testcase_07 AC 62 ms
66,944 KB
testcase_08 AC 61 ms
67,072 KB
testcase_09 AC 60 ms
66,816 KB
testcase_10 AC 60 ms
67,072 KB
testcase_11 AC 59 ms
66,816 KB
testcase_12 AC 62 ms
67,072 KB
testcase_13 AC 61 ms
67,072 KB
testcase_14 AC 61 ms
66,816 KB
testcase_15 AC 61 ms
67,072 KB
testcase_16 AC 78 ms
67,072 KB
testcase_17 AC 62 ms
67,200 KB
testcase_18 AC 66 ms
66,944 KB
testcase_19 AC 65 ms
66,688 KB
testcase_20 AC 63 ms
66,944 KB
testcase_21 AC 61 ms
66,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque,defaultdict
#import pypyjit
import itertools
import heapq
import bisect
import queue

#pypyjit.set_param("max_unroll_recursion=-1")
#sys.setrecursionlimit(10 ** 9)
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
ml = lambda: map(str, input().split())
li = lambda: list(mi())
li_st = lambda: list(map(str, input().split()))
lli = lambda n: [li() for _ in range(n)]
mod = 998244353
INF = 8 * 10**18

N,M,K = mi()
print("Yes" if N >= M + K else "No")
0