Submission #45106048


Source Code Expand

use proconio::input;

fn main() {
    input! {
        d: usize,
        t: usize,
        s: usize,
    };
    let ans = s * t >= d;
    println!("{}", if ans { "Yes" } else { "No" });
}

Submission Info

Submission Time
Task A - Don't be late
User bouzuya
Language Rust (1.42.0)
Score 100
Code Size 188 Byte
Status AC
Exec Time 6 ms
Memory 2108 KiB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 16
Set Name Test Cases
Sample sample_01.txt, sample_02.txt, sample_03.txt
All hand_01.txt, hand_02.txt, hand_03.txt, hand_04.txt, hand_05.txt, min_01.txt, min_02.txt, random_01.txt, random_02.txt, random_03.txt, random_04.txt, random_05.txt, random_06.txt, sample_01.txt, sample_02.txt, sample_03.txt
Case Name Status Exec Time Memory
hand_01.txt AC 6 ms 2108 KiB
hand_02.txt AC 1 ms 2012 KiB
hand_03.txt AC 2 ms 2076 KiB
hand_04.txt AC 2 ms 2024 KiB
hand_05.txt AC 1 ms 1880 KiB
min_01.txt AC 2 ms 2052 KiB
min_02.txt AC 1 ms 1964 KiB
random_01.txt AC 2 ms 2024 KiB
random_02.txt AC 1 ms 2008 KiB
random_03.txt AC 1 ms 2056 KiB
random_04.txt AC 2 ms 2048 KiB
random_05.txt AC 1 ms 2088 KiB
random_06.txt AC 2 ms 2060 KiB
sample_01.txt AC 1 ms 1992 KiB
sample_02.txt AC 1 ms 1952 KiB
sample_03.txt AC 1 ms 2036 KiB