結果

問題 No.63 ポッキーゲーム
ユーザー harhogefooharhogefoo
提出日時 2016-10-04 07:22:52
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 151 bytes
コンパイル時間 38 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 24,448 KB
最終ジャッジ日時 2024-11-21 15:32:35
合計ジャッジ時間 29,774 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
18,984 KB
testcase_01 AC 89 ms
24,448 KB
testcase_02 AC 95 ms
12,160 KB
testcase_03 AC 87 ms
12,288 KB
testcase_04 AC 88 ms
12,160 KB
testcase_05 AC 83 ms
12,160 KB
testcase_06 AC 80 ms
12,288 KB
testcase_07 AC 89 ms
12,160 KB
testcase_08 AC 88 ms
12,288 KB
testcase_09 AC 124 ms
12,160 KB
testcase_10 AC 436 ms
12,160 KB
testcase_11 TLE -
testcase_12 AC 730 ms
12,288 KB
testcase_13 TLE -
testcase_14 AC 752 ms
12,288 KB
testcase_15 AC 720 ms
12,160 KB
testcase_16 AC 156 ms
12,160 KB
testcase_17 TLE -
testcase_18 AC 135 ms
12,160 KB
testcase_19 AC 4,337 ms
12,160 KB
testcase_20 AC 586 ms
12,288 KB
testcase_21 AC 1,437 ms
24,320 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

length, speed = gets.chomp.split(" ").map(&:to_i)

count = 0

loop do
  length -= speed * 2
  break if length <= 0
  count += 1
end

puts speed * count
0