結果

問題 No.654 Air E869120
コンテスト
ユーザー ngtkana
提出日時 2026-08-06 18:54:25
言語 Rust
(1.94.0 + proconio + num + itertools)
コンパイル:
/usr/bin/rustc_custom
実行:
./target/release/main
結果
WA  
実行時間 -
コード長 182 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 7,706 ms
コンパイル使用メモリ 180,936 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2026-08-06 18:54:36
合計ジャッジ時間 9,508 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 5
other WA * 35
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused variable: `n`
 --> src/main.rs:5:9
  |
5 |         n: usize,
  |         ^ help: if this is intentional, prefix it with an underscore: `_n`
  |
  = note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default

warning: unused variable: `d`
 --> src/main.rs:7:9
  |
7 |         d: u64,
  |         ^ help: if this is intentional, prefix it with an underscore: `_d`

warning: unused variable: `airplains`
 --> src/main.rs:8:9
  |
8 |         airplains: [(Usize1, Usize1, u64, u64, u64); m],
  |         ^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_airplains`

ソースコード

diff #
raw source code

use proconio::{input, marker::Usize1};

fn main() {
    input! {
        n: usize,
        m: usize,
        d: u64,
        airplains: [(Usize1, Usize1, u64, u64, u64); m],
    }
}
0