結果
問題 | No.2757 Pin Game |
ユーザー | Yukino DX. |
提出日時 | 2024-05-17 21:30:22 |
言語 | Rust (1.77.0 + proconio) |
結果 |
RE
|
実行時間 | - |
コード長 | 313 bytes |
コンパイル時間 | 12,915 ms |
コンパイル使用メモリ | 403,908 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-17 21:30:37 |
合計ジャッジ時間 | 11,553 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
ソースコード
use proconio::input; fn main() { input! { n:usize, k:usize, x:[usize;n], } let mut ans = 1; let mut lastx = x[0]; for i in 1..n { if x[i] - lastx < k { continue; } lastx = x[i]; ans += 1; } println!("{}", ans); }