結果
問題 | No.2030 Googol Strings |
ユーザー | ks2m |
提出日時 | 2022-08-05 22:34:12 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 242 ms / 2,000 ms |
コード長 | 1,203 bytes |
コンパイル時間 | 2,080 ms |
コンパイル使用メモリ | 76,564 KB |
実行使用メモリ | 53,940 KB |
最終ジャッジ日時 | 2024-09-15 19:48:48 |
合計ジャッジ時間 | 6,284 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 201 ms
44,196 KB |
testcase_01 | AC | 157 ms
44,404 KB |
testcase_02 | AC | 125 ms
43,160 KB |
testcase_03 | AC | 51 ms
36,760 KB |
testcase_04 | AC | 202 ms
44,156 KB |
testcase_05 | AC | 148 ms
43,204 KB |
testcase_06 | AC | 187 ms
53,940 KB |
testcase_07 | AC | 208 ms
46,284 KB |
testcase_08 | AC | 208 ms
46,340 KB |
testcase_09 | AC | 161 ms
44,160 KB |
testcase_10 | AC | 169 ms
44,432 KB |
testcase_11 | AC | 165 ms
43,940 KB |
testcase_12 | AC | 207 ms
44,464 KB |
testcase_13 | AC | 242 ms
44,180 KB |
testcase_14 | AC | 157 ms
43,712 KB |
testcase_15 | AC | 239 ms
45,296 KB |
testcase_16 | AC | 189 ms
48,000 KB |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.PrintWriter; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int t = Integer.parseInt(br.readLine()); PrintWriter pw = new PrintWriter(System.out); for (int z = 0; z < t; z++) { String x = br.readLine(); String y = br.readLine(); if (x.length() == y.length()) { if (x.compareTo(y) > 0) { pw.println("X"); } else { pw.println("Y"); } } else { StringBuilder sbx = new StringBuilder(x); StringBuilder sby = new StringBuilder(y); sbx.append(x); sby.append(y); while (sbx.length() < sby.length()) { sbx.append(x); } while (sbx.length() > sby.length()) { sby.append(y); } String x2 = sbx.toString(); String y2 = sby.substring(0, x2.length()); int cmp = x2.compareTo(y2); if (cmp == 0) { if (x.length() > y.length()) { pw.println("X"); } else { pw.println("Y"); } } else if (cmp > 0) { pw.println("X"); } else { pw.println("Y"); } } } pw.flush(); br.close(); } }