結果

問題 No.8033 Test of Russian
コンテスト
ユーザー hanorver
提出日時 2018-04-01 22:54:12
言語 C++14
(gcc 13.3.0 + boost 1.89.0)
結果
WA  
実行時間 -
コード長 229 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 571 ms
コンパイル使用メモリ 67,696 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-26 06:02:37
合計ジャッジ時間 1,098 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 4 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <iostream>
#include <algorithm>
#include <vector>

int main(void){
	int k, n, m;

	std::cin >> k >> n >> m;

	if (n >= 3) {
		std::cout << "YES" << std::endl;
	}
	else {
		std::cout << "NO" << std::endl;
	}

	return 0;
}
0