結果

問題 No.2110 012 Matching
ユーザー yamakeyamake
提出日時 2022-10-28 21:27:17
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 648 bytes
コンパイル時間 13,410 ms
コンパイル使用メモリ 390,416 KB
実行使用メモリ 9,128 KB
最終ジャッジ日時 2024-07-06 00:26:22
合計ジャッジ時間 15,645 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused import: `std::collections::*`
 --> src/main.rs:2:5
  |
2 | use std::collections::*;
  |     ^^^^^^^^^^^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default

warning: unnecessary parentheses around `if` condition
  --> src/main.rs:22:16
   |
22 |             if ((a + b + c) % 2 == 1) {
   |                ^                    ^
   |
   = note: `#[warn(unused_parens)]` on by default
help: remove these parentheses
   |
22 -             if ((a + b + c) % 2 == 1) {
22 +             if (a + b + c) % 2 == 1 {
   |

warning: unnecessary parentheses around `if` condition
  --> src/main.rs:23:20
   |
23 |                 if (b >= 1) {
   |                    ^      ^
   |
help: remove these parentheses
   |
23 -                 if (b >= 1) {
23 +                 if b >= 1 {
   |

ソースコード

diff #

use proconio::*;
use std::collections::*;

fn main() {
    input! {
        t: i32,
    }
    for _z in 0..t {
        input! {
            a: i64,
            b: i64,
            c: i64,
        }
        let mut res: i64 = 0;
        res += b - b % 2;
        let b = b % 2;
        if a >= b + c {
            res += b + c * 2;
        } else {
            res += b + c * 2;
            res -= (b + c - a) / 2;
            if ((a + b + c) % 2 == 1) {
                if (b >= 1) {
                    res -= 1;
                } else {
                    res -= 2;
                }
            }
        }
        println!("{}", res);
    }
}
0