結果
問題 | No.138 化石のバージョン |
ユーザー | water |
提出日時 | 2020-03-08 12:27:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 794 bytes |
コンパイル時間 | 2,441 ms |
コンパイル使用メモリ | 173,788 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-07 00:05:45 |
合計ジャッジ時間 | 3,042 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 3 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,824 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
6,820 KB |
testcase_20 | AC | 2 ms
6,816 KB |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
6,816 KB |
testcase_23 | AC | 2 ms
6,816 KB |
testcase_24 | AC | 2 ms
6,820 KB |
testcase_25 | AC | 2 ms
6,820 KB |
testcase_26 | AC | 2 ms
6,816 KB |
testcase_27 | AC | 2 ms
6,820 KB |
testcase_28 | AC | 2 ms
6,820 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 2 ms
6,820 KB |
testcase_33 | WA | - |
testcase_34 | AC | 2 ms
6,816 KB |
testcase_35 | WA | - |
ソースコード
#include <bits/stdc++.h> #define INF 990000000 // using namespace std; vector<string> split(string str, char del) { int first = 0; int last = str.find_first_of(del); vector<string> result; while (first < str.size()) { string subStr(str, first, last - first); result.push_back(subStr); first = last + 1; last = str.find_first_of(del, first); if (last == string::npos) { last = str.size(); } } return result; } int main() { string s; cin>>s; vector<string> a=split(s,'.'); string t=""; for(int i=0;i<3;i++){ t+=a[i]; } int beg=stoi(t); cin>>s; a.clear(); a=split(s,'.'); string tt=""; for(int i=0;i<3;i++){ tt+=a[i]; } int e=stoi(t); if(t>tt) cout <<"YES"<<endl; else cout <<"NO"<<endl; }