結果

問題 No.2030 Googol Strings
ユーザー SSRSSSRS
提出日時 2022-08-05 21:36:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 1,645 ms
コンパイル使用メモリ 168,000 KB
実行使用メモリ 10,032 KB
最終ジャッジ日時 2024-09-15 17:52:08
合計ジャッジ時間 3,078 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
5,248 KB
testcase_01 AC 20 ms
5,376 KB
testcase_02 AC 17 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 36 ms
5,376 KB
testcase_05 AC 17 ms
5,376 KB
testcase_06 AC 37 ms
8,140 KB
testcase_07 AC 49 ms
10,032 KB
testcase_08 AC 49 ms
10,008 KB
testcase_09 AC 22 ms
5,376 KB
testcase_10 AC 22 ms
5,376 KB
testcase_11 AC 22 ms
5,376 KB
testcase_12 AC 43 ms
5,376 KB
testcase_13 AC 36 ms
5,376 KB
testcase_14 AC 22 ms
5,376 KB
testcase_15 AC 40 ms
5,376 KB
testcase_16 AC 44 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int T;
  cin >> T;
  for (int i = 0; i < T; i++){
    string x;
    cin >> x;
    string y;
    cin >> y;
    if (x + y > y + x){
      cout << "X" << endl;
    } else if (x + y < y + x){
      cout << "Y" << endl;
    } else if (x > y){
      cout << "X" << endl;
    } else {
      cout << "Y" << endl;
    }
  }
}
0