結果

問題 No.2919 Welcome to The Below Green Contenst
ユーザー viral8viral8
提出日時 2024-10-14 21:37:54
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
39,828 KB
testcase_01 AC 111 ms
40,908 KB
testcase_02 AC 104 ms
39,852 KB
testcase_03 AC 115 ms
40,724 KB
testcase_04 AC 124 ms
41,020 KB
testcase_05 AC 133 ms
40,848 KB
testcase_06 AC 102 ms
40,008 KB
testcase_07 AC 118 ms
40,940 KB
testcase_08 AC 118 ms
41,328 KB
testcase_09 AC 118 ms
41,012 KB
testcase_10 AC 112 ms
40,624 KB
testcase_11 AC 106 ms
40,096 KB
testcase_12 AC 118 ms
40,736 KB
testcase_13 AC 106 ms
40,040 KB
testcase_14 AC 120 ms
40,120 KB
testcase_15 AC 124 ms
41,096 KB
testcase_16 AC 119 ms
40,772 KB
testcase_17 AC 115 ms
40,960 KB
testcase_18 AC 105 ms
40,044 KB
testcase_19 AC 113 ms
40,680 KB
testcase_20 AC 120 ms
41,136 KB
testcase_21 AC 109 ms
40,128 KB
権限があれば一括ダウンロードができます

ソースコード

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