結果

問題 No.2919 Welcome to The Below Green Contenst
ユーザー viral8
提出日時 2024-10-14 21:37:54
言語 Java
(openjdk 23)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 3,412 ms
コンパイル使用メモリ 74,632 KB
実行使用メモリ 41,328 KB
最終ジャッジ日時 2024-10-14 21:38:07
合計ジャッジ時間 6,612 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int M = sc.nextInt();
		int K = sc.nextInt();
		System.out.println(N-M-K>=0?"Yes":"No");
	}
}
0