0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

GEEK JOB 体験してきて 10連ガチャSSR確定をつくった

Posted at

require 'json'

data = JSON.parse(gets)

gatya =[]

9.times do
num = rand(100)

if num < 10
    puts data["2"]
    gatya.push(data["2"])
elsif num < 30
    puts data["1"]
    gatya.push(data["1"])
else
    puts data["0"]
    gatya.push(data["0"])
end

end

if gatya.include?(data["2"])
num = rand(100)

if num < 10 
    puts data["2"]
    gatya.push(data["2"])
elsif num < 30
    puts data["1"]
    gatya.push(data["1"])
else
    puts data["0"]
    gatya.push(data["0"])
end
else
puts data["2"] 

end

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?