Submission #48846368


Source Code Expand

use proconio::input;

fn main() {
    input! {
        a: usize,
        b: usize,
        c: usize,
    };
    let ans = a == b && b == c;
    println!("{}", if ans { "Yes" } else { "No" });
}

Submission Info

Submission Time
Task B - Slot
User bouzuya
Language Rust (rustc 1.70.0)
Score 8
Code Size 194 Byte
Status AC
Exec Time 1 ms
Memory 2100 KiB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 8 / 8
Status
AC × 3
AC × 10
Set Name Test Cases
Sample example_00.txt, example_01.txt, example_02.txt
All example_00.txt, example_01.txt, example_02.txt, hand_00.txt, hand_01.txt, hand_02.txt, hand_03.txt, hand_04.txt, hand_05.txt, hand_06.txt
Case Name Status Exec Time Memory
example_00.txt AC 1 ms 1868 KiB
example_01.txt AC 1 ms 2100 KiB
example_02.txt AC 1 ms 1944 KiB
hand_00.txt AC 1 ms 1976 KiB
hand_01.txt AC 1 ms 1804 KiB
hand_02.txt AC 1 ms 1940 KiB
hand_03.txt AC 1 ms 1872 KiB
hand_04.txt AC 1 ms 1944 KiB
hand_05.txt AC 1 ms 1940 KiB
hand_06.txt AC 1 ms 1880 KiB