結果
問題 | No.651 E869120 and Driving |
ユーザー | maimai8 |
提出日時 | 2019-06-18 10:18:39 |
言語 | OCaml (5.1.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 278 bytes |
コンパイル時間 | 481 ms |
コンパイル使用メモリ | 21,572 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-09 00:44:01 |
合計ジャッジ時間 | 781 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | WA | - |
ソースコード
let () = let a = Scanf.scanf "%d\n" (fun x -> x) in let m = ((float_of_int a) /. 100.) *. 60. in let h = m /. 60. in let m' = if h = 0. then int_of_float m else (int_of_float m) mod 60 in let h' = 10 + (int_of_float h) in Printf.printf "%d:%d\n" h' m'