結果

問題 No.3033 Test of Russian
ユーザー uafr_csuafr_cs
提出日時 2018-04-01 22:54:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 275 bytes
コンパイル時間 3,519 ms
コンパイル使用メモリ 74,064 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-06-26 06:03:04
合計ジャッジ時間 4,267 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 132 ms
40,820 KB
testcase_02 AC 131 ms
40,772 KB
testcase_03 WA -
testcase_04 AC 136 ms
41,252 KB
testcase_05 WA -
testcase_06 AC 138 ms
41,096 KB
testcase_07 AC 135 ms
40,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int M = sc.nextInt();
		final int X = sc.nextInt();
		
		System.out.println(M >= 3 ? "YES" : "NO");
	}
}
0