結果

問題 No.138 化石のバージョン
ユーザー RCCW
提出日時 2017-02-04 20:20:43
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 1,402 ms
コンパイル使用メモリ 157,524 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-24 06:18:22
合計ジャッジ時間 2,600 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19 WA * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

long long a,minv=1000003;
int main(void){

	int a,b,c;
	char d ,e;
	int aa,bb,cc;
	char dd,ee;

	cin>>a>>d>>b>>e>>c;
	cin>>aa>>dd>>bb>>ee>>cc;


	 if(a>=aa&&b>=bb&&c>=cc){
		cout<<"YES"<<endl;
			return 0;
	}
	cout<<"NO"<<endl;

}
0