結果

問題 No.3454 Zodiac
コンテスト
ユーザー norioc
提出日時 2026-02-28 14:04:10
言語 Rust
(1.93.0 + proconio + num + itertools)
コンパイル:
/usr/bin/rustc_custom
実行:
./target/release/main
結果
WA  
実行時間 -
コード長 630 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 923 ms
コンパイル使用メモリ 206,596 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2026-02-28 14:04:15
合計ジャッジ時間 2,154 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 11 WA * 2
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused import: `std::process::exit`
 --> src/main.rs:4:5
  |
4 | use std::process::exit;
  |     ^^^^^^^^^^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default

ソースコード

diff #
raw source code

#![allow(non_snake_case)]
#![allow(dead_code, unused_macros)]

use std::process::exit;
#[allow(unused_imports)]
use proconio::{input, marker::Usize1, marker::Chars};
#[allow(unused_imports)]
use itertools::Itertools;

macro_rules! d {
    ( $( $x:expr ),* $(,)? ) => {
        println!(
            concat!( $( stringify!($x), "={:?} " ),* ),
            $( $x ),*
        );
    };
}

fn main() {
    input! {
        P: i64,
        Q: i64,
        Y0: i64,
        P0: i64,
        Q0: i64,
        Y: i64,
    }

    let p = (Y - Y0 + P0).rem_euclid(P);
    let q = (Y - Y0 + Q0).rem_euclid(Q);
    println!("{} {}", p, q);
}
0