結果

問題 No.138 化石のバージョン
ユーザー KUSAKA GenKUSAKA Gen
提出日時 2018-02-26 21:44:07
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 612 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 57,452 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-03 17:55:13
合計ジャッジ時間 1,581 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 1 ms
6,944 KB
testcase_12 WA -
testcase_13 AC 1 ms
6,940 KB
testcase_14 WA -
testcase_15 AC 2 ms
6,940 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
6,940 KB
testcase_21 WA -
testcase_22 AC 1 ms
6,944 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 1 ms
6,940 KB
testcase_33 WA -
testcase_34 AC 1 ms
6,944 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;

int main()
{
	string S0, S1;
	cin >> S0 >> S1;

	if(S0.erase(0, S0.find('.') - 1) > S1.erase(0, S1.find('.') - 1))
	{
		cout << "YES" << endl;
		return 0;
	}
	if(S0.erase(S0.find('.') + 1, S0.rfind('.') - 1 - S0.find('.') + 1)
	   > S1.erase(S1.find('.') + 1, S1.rfind('.') - 1 - S1.find('.') + 1))
	{
		cout << "YES" << endl;
		return 0;
	}
	if(S0.erase(S0.rfind('.') + 1, S0.length() - S0.rfind('.') + 1)
		> S1.erase(S1.rfind('.') + 1, S1.length() - S1.rfind('.') + 1))
	{
		cout << "YES" << endl;
		return 0;
	}

	cout << "NO" << endl;
	return 0;
}
0