結果

問題 No.2416 vs Slime
ユーザー YU HiroseYU Hirose
提出日時 2024-09-10 17:19:58
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 199 bytes
コンパイル時間 743 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 19,232 KB
最終ジャッジ日時 2024-09-10 17:20:07
合計ジャッジ時間 7,722 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
19,104 KB
testcase_01 AC 82 ms
12,032 KB
testcase_02 AC 80 ms
12,288 KB
testcase_03 AC 82 ms
12,160 KB
testcase_04 AC 85 ms
12,288 KB
testcase_05 AC 83 ms
12,416 KB
testcase_06 AC 91 ms
12,160 KB
testcase_07 AC 85 ms
12,288 KB
testcase_08 AC 83 ms
12,160 KB
testcase_09 AC 81 ms
12,160 KB
testcase_10 AC 84 ms
12,416 KB
testcase_11 AC 81 ms
12,416 KB
testcase_12 AC 82 ms
12,416 KB
testcase_13 AC 83 ms
12,160 KB
testcase_14 AC 83 ms
12,416 KB
testcase_15 AC 83 ms
12,288 KB
testcase_16 AC 85 ms
12,160 KB
testcase_17 AC 84 ms
12,160 KB
testcase_18 AC 90 ms
12,160 KB
testcase_19 AC 82 ms
12,160 KB
testcase_20 AC 81 ms
12,288 KB
testcase_21 AC 81 ms
12,160 KB
testcase_22 AC 83 ms
12,416 KB
testcase_23 AC 82 ms
12,160 KB
testcase_24 AC 82 ms
12,160 KB
testcase_25 AC 85 ms
12,288 KB
testcase_26 AC 85 ms
12,288 KB
testcase_27 AC 84 ms
12,416 KB
testcase_28 AC 216 ms
12,288 KB
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

h, a = gets.chomp.split.map{|e| e.to_i}
cnt = 0
s = [h]
loop do
    cnt += 1
    x = s[0] / a
    s.shift
    s << x
    s << x
    s.delete(0)
    if s.length == 0
        break
    end
end
puts cnt
0