結果

問題 No.836 じょうよ
ユーザー iwotiwot
提出日時 2020-06-03 21:57:32
言語 Rust
(1.77.0 + proconio)
結果
TLE  
実行時間 -
コード長 556 bytes
コンパイル時間 17,297 ms
コンパイル使用メモリ 378,712 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-11-26 01:31:57
合計ジャッジ時間 46,923 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1 ms
7,040 KB
testcase_02 AC 1 ms
7,168 KB
testcase_03 AC 1 ms
7,168 KB
testcase_04 AC 1 ms
7,168 KB
testcase_05 AC 1 ms
7,168 KB
testcase_06 AC 1 ms
7,168 KB
testcase_07 AC 1 ms
10,496 KB
testcase_08 AC 1 ms
7,296 KB
testcase_09 AC 1 ms
10,496 KB
testcase_10 AC 1 ms
7,168 KB
testcase_11 AC 9 ms
10,496 KB
testcase_12 AC 13 ms
7,168 KB
testcase_13 AC 9 ms
10,496 KB
testcase_14 AC 3 ms
7,168 KB
testcase_15 AC 11 ms
7,552 KB
testcase_16 AC 88 ms
7,424 KB
testcase_17 AC 81 ms
10,624 KB
testcase_18 AC 8 ms
7,424 KB
testcase_19 AC 17 ms
10,624 KB
testcase_20 AC 46 ms
7,424 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 971 ms
5,248 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

fn read_vec<T: std::str::FromStr>() -> Vec<T> {
    let mut s = String::new();
    std::io::stdin().read_line(&mut s).ok();
    s.trim()
        .split_whitespace()
        .map(|e| e.parse().ok().unwrap())
        .collect()
}

fn main() {
  let lrn:Vec<usize> = read_vec();
  let l = lrn[0];
  let r = lrn[1];
  let n = lrn[2];

  let mut result = vec![r/n; n];
  for i in 0..l {
    let k = i % n;
    if result[k] > 0 {
      result[k] -= 1;
    }
  }

  for i in 0..=r % n {
    result[i] += 1;
  }
  
  for a in result {
    println!("{}", a);
  }
}
0