結果

問題 No.2919 Welcome to The Below Green Contenst
ユーザー pluto77pluto77
提出日時 2024-10-25 14:53:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 75 bytes
コンパイル時間 629 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-10-25 14:53:52
合計ジャッジ時間 2,761 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,372 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 37 ms
51,960 KB
testcase_04 WA -
testcase_05 AC 36 ms
52,424 KB
testcase_06 AC 36 ms
51,904 KB
testcase_07 AC 36 ms
52,436 KB
testcase_08 WA -
testcase_09 AC 36 ms
53,228 KB
testcase_10 WA -
testcase_11 AC 36 ms
52,488 KB
testcase_12 AC 37 ms
52,088 KB
testcase_13 AC 37 ms
51,940 KB
testcase_14 AC 37 ms
52,512 KB
testcase_15 AC 37 ms
52,908 KB
testcase_16 AC 37 ms
52,132 KB
testcase_17 AC 37 ms
51,824 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 37 ms
52,888 KB
testcase_21 AC 37 ms
52,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
if n>=m+k:
 print('yes')
else:
 print('No')
0