結果

問題 No.138 化石のバージョン
ユーザー test
提出日時 2020-09-06 00:39:17
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 275 bytes
コンパイル時間 1,511 ms
コンパイル使用メモリ 166,292 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-29 06:23:00
合計ジャッジ時間 2,421 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, ss, ee) for (int i = ss; i < ee; ++i)
using namespace std;

int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);

  string a, b;
  cin >> a >> b;
  string ans = "YES";
  if (a < b) ans = "NO";
  cout << ans << endl;
  getchar();
}
0