結果

問題 No.651 E869120 and Driving
ユーザー jiro8719jiro8719
提出日時 2018-06-18 17:46:29
言語 Ruby
(3.3.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 151 bytes
コンパイル時間 47 ms
コンパイル使用メモリ 11,944 KB
実行使用メモリ 16,136 KB
最終ジャッジ日時 2023-10-22 07:58:42
合計ジャッジ時間 1,552 ms
ジャッジサーバーID
(参考情報)
judge10 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
16,104 KB
testcase_01 AC 83 ms
16,104 KB
testcase_02 WA -
testcase_03 AC 81 ms
16,104 KB
testcase_04 AC 82 ms
16,104 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 82 ms
16,104 KB
testcase_09 AC 83 ms
16,104 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

input = gets.to_i
a = input / 100
b = input % 100
c = (b.to_f * 0.1 * 6).to_i
if c >= 10
    puts "#{a+10}:#{c}"
else
    puts puts "#{a+10}:0#{c}"
end
0