結果

問題 No.138 化石のバージョン
ユーザー sugim48
提出日時 2015-01-29 23:21:59
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 839 bytes
コンパイル時間 584 ms
コンパイル使用メモリ 86,160 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-23 04:05:10
合計ジャッジ時間 1,448 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 18 WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <algorithm>
#include <cstdio>
#include <functional>
#include <iostream>
#include <cfloat>
#include <climits>
#include <cstring>
#include <cmath>
#include <map>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <time.h>
#include <unordered_map>
#include <vector>
using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> i_i;
typedef pair<ll, int> ll_i;
typedef pair<double, int> d_i;
typedef pair<ll, ll> ll_ll;
typedef pair<double, double> d_d;
struct edge { ll B, T, F, P; };

ll MOD = 1234567891;
ll _MOD = 1000000009;
double EPS = 1e-10;
int INF = INT_MAX / 10;

int main() {
	vector<int> v1(3), v2(3);
	cin >> v1[0] >> v1[1] >> v1[2];
	cin >> v2[0] >> v2[1] >> v2[2];
	cout << (v1 >= v2 ? "YES" : "NO") << endl;
}
0