結果

問題 No.2030 Googol Strings
ユーザー tentententen
提出日時 2024-04-02 15:18:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 271 ms / 2,000 ms
コード長 1,633 bytes
コンパイル時間 3,205 ms
コンパイル使用メモリ 78,816 KB
実行使用メモリ 57,324 KB
最終ジャッジ日時 2024-09-30 23:14:24
合計ジャッジ時間 7,359 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
55,304 KB
testcase_01 AC 159 ms
55,752 KB
testcase_02 AC 133 ms
53,916 KB
testcase_03 AC 51 ms
50,096 KB
testcase_04 AC 163 ms
54,756 KB
testcase_05 AC 193 ms
53,712 KB
testcase_06 AC 198 ms
55,944 KB
testcase_07 AC 213 ms
57,324 KB
testcase_08 AC 238 ms
56,528 KB
testcase_09 AC 216 ms
55,704 KB
testcase_10 AC 216 ms
55,980 KB
testcase_11 AC 229 ms
55,880 KB
testcase_12 AC 224 ms
55,960 KB
testcase_13 AC 250 ms
55,572 KB
testcase_14 AC 242 ms
56,140 KB
testcase_15 AC 271 ms
56,676 KB
testcase_16 AC 244 ms
56,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        while (n-- > 0) {
            sb.append(compare(sc.next(), sc.next()) < 0 ? "Y\n" : "X\n");
        }
        System.out.print(sb);
    }
    
    static int compare(String a, String b) {
        for (int i = 0; i < Math.max(a.length(), b.length()) * 2; i++) {
            if (a.charAt(i % a.length()) != b.charAt(i % b.length())) {
                return a.charAt(i % a.length()) - b.charAt(i % b.length());
            }
        }
        return a.length() - b.length();
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0