結果
| 問題 | 
                            No.138 化石のバージョン
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2017-10-09 02:17:52 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 155 bytes | 
| コンパイル時間 | 1,137 ms | 
| コンパイル使用メモリ | 158,552 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-11-17 05:52:22 | 
| 合計ジャッジ時間 | 2,147 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 27 WA * 6 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(void) {
  string s, t;
  cin >> s >> t;
  cout << (t <= s ? "YES" : "NO") << endl;
  return 0;
}