結果
問題 | No.2030 Googol Strings |
ユーザー | tenten |
提出日時 | 2022-08-08 17:52:24 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,401 bytes |
コンパイル時間 | 2,614 ms |
コンパイル使用メモリ | 80,488 KB |
実行使用メモリ | 49,320 KB |
最終ジャッジ日時 | 2024-09-19 03:09:49 |
合計ジャッジ時間 | 8,034 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 203 ms
43,804 KB |
testcase_01 | AC | 199 ms
44,708 KB |
testcase_02 | AC | 162 ms
42,568 KB |
testcase_03 | AC | 59 ms
37,240 KB |
testcase_04 | WA | - |
testcase_05 | AC | 182 ms
43,860 KB |
testcase_06 | AC | 199 ms
48,032 KB |
testcase_07 | AC | 242 ms
49,320 KB |
testcase_08 | AC | 274 ms
49,264 KB |
testcase_09 | AC | 214 ms
44,876 KB |
testcase_10 | AC | 215 ms
44,712 KB |
testcase_11 | AC | 209 ms
44,748 KB |
testcase_12 | AC | 207 ms
43,720 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 225 ms
45,528 KB |
ソースコード
import java.io.*; import java.util.*; 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) { if (compare(sc.next(), sc.next()) < 0) { sb.append("Y\n"); } else { sb.append("X\n"); } } System.out.print(sb); } static int compare(String x, String y) { String xx = x + y; String yy = y + y; if (xx.equals(yy)) { return x.length() - y.length(); } else { return xx.compareTo(yy); } } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }