結果
問題 | No.2030 Googol Strings |
ユーザー | tenten |
提出日時 | 2023-07-24 18:58:33 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,132 bytes |
コンパイル時間 | 4,927 ms |
コンパイル使用メモリ | 84,128 KB |
実行使用メモリ | 58,272 KB |
最終ジャッジ日時 | 2024-10-01 14:14:51 |
合計ジャッジ時間 | 10,659 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 164 ms
54,884 KB |
testcase_01 | AC | 161 ms
55,752 KB |
testcase_02 | AC | 145 ms
54,060 KB |
testcase_03 | AC | 58 ms
49,924 KB |
testcase_04 | WA | - |
testcase_05 | AC | 202 ms
53,932 KB |
testcase_06 | AC | 230 ms
55,952 KB |
testcase_07 | AC | 242 ms
56,924 KB |
testcase_08 | AC | 250 ms
56,824 KB |
testcase_09 | AC | 256 ms
58,272 KB |
testcase_10 | AC | 260 ms
56,188 KB |
testcase_11 | AC | 252 ms
56,324 KB |
testcase_12 | AC | 191 ms
55,220 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 259 ms
56,724 KB |
ソースコード
import java.io.*; import java.util.*; 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) { if (isLarger(sc.next(), sc.next())) { sb.append("X\n"); } else { sb.append("Y\n"); } } System.out.print(sb); } static boolean isLarger(String a, String b) { if (a.length() > b.length()) { return !isLarger(b, a); } for (int i = 0; i < b.length(); i++) { if (a.charAt(i % a.length()) < b.charAt(i)) { return false; } else if (a.charAt(i % a.length()) > b.charAt(i)) { return true; } } return false; } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); 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 int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }