結果

問題 No.2919 Welcome to The Below Green Contenst
ユーザー kusirakusirakusirakusira
提出日時 2024-09-05 11:18:07
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 81 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 65,268 KB
最終ジャッジ日時 2024-09-05 11:22:08
合計ジャッジ時間 1,862 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 37 ms
52,136 KB
testcase_04 AC 36 ms
51,748 KB
testcase_05 AC 36 ms
52,424 KB
testcase_06 AC 37 ms
52,156 KB
testcase_07 AC 37 ms
51,964 KB
testcase_08 AC 36 ms
52,924 KB
testcase_09 AC 37 ms
53,352 KB
testcase_10 AC 36 ms
52,376 KB
testcase_11 AC 36 ms
52,768 KB
testcase_12 AC 37 ms
52,456 KB
testcase_13 AC 37 ms
53,188 KB
testcase_14 AC 37 ms
52,504 KB
testcase_15 AC 37 ms
52,984 KB
testcase_16 AC 37 ms
53,444 KB
testcase_17 AC 37 ms
52,792 KB
testcase_18 AC 38 ms
52,624 KB
testcase_19 WA -
testcase_20 AC 36 ms
52,004 KB
testcase_21 AC 36 ms
51,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = map(int,input().split())

if(m+k < n):
	print("Yes")
else:
	print("No")
	
0