結果
| 問題 | No.2919 Welcome to The Below Green Contenst | 
| コンテスト | |
| ユーザー |  ID 21712 | 
| 提出日時 | 2024-10-12 15:58:35 | 
| 言語 | Go (1.23.4) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 153 bytes | 
| コンパイル時間 | 14,470 ms | 
| コンパイル使用メモリ | 221,916 KB | 
| 実行使用メモリ | 6,824 KB | 
| 最終ジャッジ日時 | 2024-10-12 15:58:51 | 
| 合計ジャッジ時間 | 15,228 ms | 
| ジャッジサーバーID (参考情報) | judge / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 18 | 
ソースコード
package main
import "fmt"
func main() {
	var n,m,k int64
	
	fmt.Scan(&n,&m,&k)
	
	if m+k <= n {
		fmt.Println("Yes")
	} else {
		fmt.Println("No")
	}
}
            
            
            
        