結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | m0ntBL4Nc |
提出日時 | 2019-09-24 14:32:15 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 1,160 bytes |
コンパイル時間 | 13,218 ms |
コンパイル使用メモリ | 392,188 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-23 07:40:55 |
合計ジャッジ時間 | 14,081 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 0 ms
6,940 KB |
コンパイルメッセージ
warning: variable `number_of_thousand` is assigned to, but never used --> src/main.rs:8:13 | 8 | let mut number_of_thousand = 0; | ^^^^^^^^^^^^^^^^^^ | = note: consider using `_number_of_thousand` instead = note: `#[warn(unused_variables)]` on by default
ソースコード
fn getline() -> String { let mut __ret = String::new(); std::io::stdin().read_line(&mut __ret).ok(); return __ret; } fn main() { let mut number_of_thousand = 0; let mut number_of_hundred: i32 = getline().trim().parse().unwrap(); let mut number_of_twentyfive: i32 = getline().trim().parse().unwrap(); let mut number_of_one: i32 = getline().trim().parse().unwrap(); // 1円硬貨を25円硬貨に両替 loop { if number_of_one < 25 { break; } else { number_of_one -= 25; number_of_twentyfive += 1; } } // 25円硬貨を100円硬貨に両替 loop { if number_of_twentyfive < 4 { break; } else { number_of_twentyfive -= 4; number_of_hundred += 1; } } // 100円硬貨を1000円札に両替 loop { if number_of_hundred < 10 { break; } else { number_of_hundred -= 10; number_of_thousand += 1; } } let number_of_coin = number_of_one + number_of_twentyfive + number_of_hundred; println!("{}", number_of_coin); }