結果
問題 | No.2828 Remainder Game |
ユーザー | Yukino DX. |
提出日時 | 2024-08-02 21:59:49 |
言語 | Rust (1.77.0 + proconio) |
結果 |
RE
|
実行時間 | - |
コード長 | 557 bytes |
コンパイル時間 | 10,803 ms |
コンパイル使用メモリ | 401,744 KB |
実行使用メモリ | 25,488 KB |
平均クエリ数 | 51.90 |
最終ジャッジ日時 | 2024-08-02 22:00:09 |
合計ジャッジ時間 | 14,633 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 63 ms
24,568 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 68 ms
24,568 KB |
ソースコード
use proconio::input_interactive; fn main() { input_interactive! { n:usize, } let ans = f(n, 0, n); println!("0 1"); println!("{}", ans); } fn f(n: usize, l: usize, r: usize) -> usize { let mut res = 0; println!("{} {}", n + 1, r - l); for i in l..r { print!("{} ", i); } println!(); input_interactive! { c:usize, } res += if r - l == 1 { c * l } else if 1 <= c { let m = (l + r) / 2; f(n, l, m) + f(n, m, r) } else { 0 }; res }