1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AtCoderログ:0103 - ABC 217 A

Last updated at Posted at 2021-09-06

問題

問題文

相異なる二つの文字列 $S,T$ が与えられます。
$S$ が $T$ よりも辞書順で小さい場合は Yes を、大きい場合は No を出力してください。

制約

・$S,T$ は英小文字からなる長さ $1$ 以上 $10$ 以下の相異なる文字列である。

回答

回答1 (AC)

C++ では標準関数によって文字列の辞書順による比較が可能なので、数字と同じようにコーディングすれば良いです。コードは以下のようになりました。

abc217a-1.cpp
#include <bits/stdc++.h>
using namespace std;

int main() {
  string s, t;
  cin >> s >> t;

  if ( s<t ) {
    cout << "Yes" << endl;
  } else {
    cout << "No" << endl;
  }
}

調べたこと

AtCoder の解説公式解説

回答1と同じ方針でした。

リンク

前後の記事

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?