結果
問題 | No.296 n度寝 |
ユーザー | yanao |
提出日時 | 2020-09-03 15:47:09 |
言語 | Rust (1.77.0 + proconio) |
結果 |
RE
|
実行時間 | - |
コード長 | 904 bytes |
コンパイル時間 | 13,080 ms |
コンパイル使用メモリ | 379,876 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-03 00:18:07 |
合計ジャッジ時間 | 11,667 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | RE | - |
ソースコード
fn getline() -> String{ let mut __ret=String::new(); std::io::stdin().read_line(&mut __ret).ok(); return __ret; } fn main() { let n: u32 = getline().trim().to_string().parse().unwrap(); // n度寝 let h: u32 = getline().trim().to_string().parse().unwrap(); // アラームが最初になる時刻の、24時間制の時の値 let m: u32 = getline().trim().to_string().parse().unwrap(); // アラーム最初になる時刻の、分の値 let t: u32 = getline().trim().to_string().parse().unwrap(); // アラームが繰り返される間隔の分単位の値 let at_time: u32 = h * 60 + m + t * (n - 1); // 分になおす println!("{}", at_time / 60 % 24); // 分を60で割ったら時になる。24は0時なので、24で割ったあまりを求める println!("{}", at_time % 60); // 分を60で割ったあまりを求めると、残りの分数になる }