結果
問題 | No.2030 Googol Strings |
ユーザー | ks2m |
提出日時 | 2022-08-05 22:28:25 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,165 bytes |
コンパイル時間 | 2,869 ms |
コンパイル使用メモリ | 76,452 KB |
実行使用メモリ | 48,236 KB |
最終ジャッジ日時 | 2024-09-15 19:38:28 |
合計ジャッジ時間 | 6,861 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 187 ms
43,492 KB |
testcase_01 | AC | 145 ms
43,424 KB |
testcase_02 | AC | 126 ms
42,668 KB |
testcase_03 | AC | 52 ms
36,964 KB |
testcase_04 | AC | 184 ms
43,804 KB |
testcase_05 | AC | 140 ms
43,144 KB |
testcase_06 | AC | 173 ms
48,236 KB |
testcase_07 | AC | 198 ms
45,188 KB |
testcase_08 | AC | 181 ms
46,192 KB |
testcase_09 | AC | 155 ms
43,956 KB |
testcase_10 | AC | 155 ms
44,304 KB |
testcase_11 | AC | 153 ms
43,268 KB |
testcase_12 | AC | 186 ms
43,804 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 186 ms
46,124 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); 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(); } }