結果

問題 No.2030 Googol Strings
ユーザー ShirotsumeShirotsume
提出日時 2022-07-15 02:51:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 508 ms / 2,000 ms
コード長 795 bytes
コンパイル時間 2,485 ms
コンパイル使用メモリ 76,536 KB
実行使用メモリ 63,688 KB
最終ジャッジ日時 2024-06-26 20:54:28
合計ジャッジ時間 10,346 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 499 ms
59,920 KB
testcase_01 AC 299 ms
57,016 KB
testcase_02 AC 298 ms
57,592 KB
testcase_03 AC 118 ms
52,876 KB
testcase_04 AC 466 ms
60,052 KB
testcase_05 AC 294 ms
56,988 KB
testcase_06 AC 284 ms
60,932 KB
testcase_07 AC 380 ms
63,524 KB
testcase_08 AC 361 ms
63,688 KB
testcase_09 AC 322 ms
57,488 KB
testcase_10 AC 344 ms
57,516 KB
testcase_11 AC 334 ms
57,812 KB
testcase_12 AC 508 ms
59,900 KB
testcase_13 AC 495 ms
58,372 KB
testcase_14 AC 356 ms
57,764 KB
testcase_15 AC 432 ms
57,872 KB
testcase_16 AC 462 ms
57,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	public static void main(String[] args) {
	        Scanner sc = new Scanner(System.in);
	        int t = sc.nextInt();
	        for(int i = 0; i < t; i++){
                String x = sc.next();
                String y = sc.next();
                int p = (x + y).compareTo(y + x);
                if(p > 0){
                    System.out.println("X");
                }
                else if (p < 0){
                    System.out.println("Y");
                }
                else{
                    if(x.length() > y.length()){
                        System.out.println("X");
                    }
                    else{
                        System.out.println("Y");
                    }
                }
				
	        }
	    }
}
0