結果

問題 No.2030 Googol Strings
ユーザー phsplsphspls
提出日時 2023-01-12 03:12:34
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 1,318 bytes
コンパイル時間 13,365 ms
コンパイル使用メモリ 403,368 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-06-02 03:50:06
合計ジャッジ時間 13,757 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
6,812 KB
testcase_01 AC 18 ms
6,816 KB
testcase_02 AC 15 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 20 ms
6,944 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 10 ms
9,344 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 11 ms
6,940 KB
testcase_10 AC 11 ms
6,944 KB
testcase_11 AC 11 ms
6,940 KB
testcase_12 AC 27 ms
6,940 KB
testcase_13 AC 16 ms
6,940 KB
testcase_14 AC 6 ms
6,940 KB
testcase_15 AC 19 ms
6,944 KB
testcase_16 AC 13 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused import: `std::fmt::format`
 --> src/main.rs:1:5
  |
1 | use std::fmt::format;
  |     ^^^^^^^^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default

ソースコード

diff #

use std::fmt::format;


fn solve() -> char {
    let mut x = String::new();
    std::io::stdin().read_line(&mut x).ok();
    let x = x.trim();
    let mut y = String::new();
    std::io::stdin().read_line(&mut y).ok();
    let y = y.trim();

    if x.len() == y.len() {
        if x > y {
            return 'X';
        } else {
            return 'Y';
        }
    }
    let x = x.chars().collect::<Vec<_>>();
    let y = y.chars().collect::<Vec<_>>();
    let xlen = x.len();
    let ylen = y.len();
    if xlen > ylen {
        for i in 0..xlen*2 {
            if x[i%xlen] != y[i%ylen] {
                if x[i%xlen] > y[i%ylen] {
                    return 'X';
                } else {
                    return 'Y';
                }
            }
        }
        return 'X';
    }
    for i in 0..ylen*2 {
        if x[i%xlen] != y[i%ylen] {
            if x[i%xlen] > y[i%ylen] {
                return 'X';
            } else {
                return 'Y';
            }
        }
    }
    return 'Y';
}

fn main() {
    let mut t = String::new();
    std::io::stdin().read_line(&mut t).ok();
    let t: usize = t.trim().parse().unwrap();
    let mut result = Vec::with_capacity(t);
    for _ in 0..t {
        result.push(solve());
    }
    for &c in result.iter() {
        println!("{}", c);
    }
}
0