結果

問題 No.651 E869120 and Driving
ユーザー jiro8719jiro8719
提出日時 2018-06-18 17:46:29
言語 Ruby
(3.3.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 151 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-09-22 09:01:13
合計ジャッジ時間 1,494 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,416 KB
testcase_01 AC 86 ms
12,288 KB
testcase_02 WA -
testcase_03 AC 87 ms
12,416 KB
testcase_04 AC 88 ms
12,288 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 87 ms
12,288 KB
testcase_09 AC 86 ms
12,032 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