ジャンプチ・曜日メダルを余らずに使うには!?

 

ジャンプチの曜日メダル、毎週チケットが交換できてキャラがゲットできるチャンス!
ですが、一部のメダルが余ってしまっている…ということもあるのではないでしょうか。

 

プチ友のパラワンリュネットエニグマガメさん( @pala_leg_ROKI )が、曜日チケットを余らせずに使用することができるシミュレーションプログラムを作成してくださいました‼

 

2種類のチケットを指定すれば、28日でキレイに使いきれる組み合わせを計算できます!使い方はコピペして、数か所入力するだけ★曜日メダルの使用計画にお役立てください👌

目次

曜日メダルプログラム使い方

(1)Run Ruby Onlineにアクセス

プログラムを実行するサイト、Run Ruby Onlineにアクセスしてください!

https://runrb.io/
※スマホでは短時間で実行できない場合がありますので、パソコンからアクセスしてください。

(2)コードをコピペ

ページ下の「曜日チケットプログラム」のコードを左側にコピー&ペーストしてください。

(3)必要項目を入力する

必ず交換したいチケット(2種類)の番号を入力してください。

チケットの番号

0=ボーボボ
1=こち亀
2=ジョジョ
3=聖闘士星矢
4=BLEACH
5=ワンピース
6=銀魂
7=ヒロアカ
8=ドラゴンボール
9=鬼滅の刃
10=REBORN
11=幽遊白書
12=北斗の拳
13=NARUTO
14=封神演義
15=うすた京介
16=ブラクロ
17=遊戯王
18=るろ剣
19=キン肉マン
20=HUNTER×HUNTER
21=ハイキュー!!

1つめ:ピンクの場所に2か所数字を入力
2つめ:オレンジの場所に2か所数字を入力

 

例:BLEACH(4)と銀魂(6)は、絶対交換したい!ので選択した場合

(2)結果をチェック

下の再生ボタンを押すと、黒い画面に結果が表示されます。
7種類のチケットが一塊で表示されますので、それらを交換すれば使い切れるはずです!(同じ作品が2回書いてあったらその作品は2回交換できます。)

曜日チケットプログラム

下記のコードを、コピー&ペーストして使用してください。


sun=0
mon=0
tue=0
wed=0
thu=0
fri=0
sat=0

#0=ボーボボ、1=こち亀、2=ジョジョ、3=聖闘士星矢、4=BLEACH、5=ワンピース、6=銀魂、7=ヒロアカ、8=ドラゴンボール、9=鬼滅の刃、10=REBORN、11=幽遊白書、12=北斗の拳、13=NARUTO、14=封神演義、15=うすた京介、16=ブラクロ、17=遊戯王、18=るろ剣、19=キン肉マン、20=HUNTER×HUNTER、21=ハイキュー!!
#aとbに絶対入れたいチケットの番号を入れる。
a=0
b=0
c=0
d=0
e=0
f=0
g=0

ticket=["ボーボボ","こち亀","ジョジョ","聖闘士星矢","BLEACH","ワンピース","銀魂","ヒロアカ","ドラゴンボール","鬼滅の刃","REBORN","幽遊白書","北斗の拳","NARUTO","封神演義","うすた京介","ブラクロ","遊戯王","るろ剣","キン肉マン","HUNTER×HUNTER","ハイキュー!!"]
for a in 0..21
#この上の0をさっき"a="に入れた数字にする
 choisea=ticket[a]
 for b in 0..21
#この上の0をさっき"b="に入れた数字にする
  choiseb=ticket[b]
   for c in 0..21
    choisec=ticket[c]
     for d in 0..21
      choised=ticket[d]
      if d >= c
       for e in 0..21
        choisee=ticket[e]
        if e >= d
         for f in 0..21
          choisef=ticket[f]
          if f >= e
           for g in 0..21
            choiseg=ticket[g]
            if g >= f
             if choisea=="ボーボボ"
              tue += 1
              wed += 1
              fri += 1
              sun += 1
             elsif choisea=="こち亀"
              tue += 1
              thu += 1
              sat += 1
              sun += 1
             elsif choisea=="ジョジョ"
              mon += 1
              tue += 1
              thu += 1
              sat += 1
             elsif choisea=="聖闘士星矢"
              mon += 1
              tue += 1
              thu += 1
              fri += 1
             elsif choisea=="BLEACH"
              mon += 1
              wed += 1
              thu += 1
              sat += 1
             elsif choisea=="ワンピース"
              mon += 1
              tue += 1
              fri += 1
              sat += 1
             elsif choisea=="銀魂"
              tue += 1
              wed += 1
              thu += 1
              sun += 1
             elsif choisea=="ヒロアカ"
              mon += 1
              wed += 1
              fri += 1
              sat += 1
             elsif choisea=="ドラゴンボール"
              mon += 1
              tue += 1
              fri += 1
              sun += 1
             elsif choisea=="鬼滅の刃"
              mon += 1
              wed += 1
              fri += 1
               sun += 1
             elsif choisea=="REBORN"
              mon += 1
              tue += 1
              wed += 1
              sat += 1
             elsif choisea=="幽遊白書"
              wed += 1
              fri += 1
              sat += 1
              sun += 1
             elsif choisea=="北斗の拳"
              tue += 1
              wed += 1
              fri += 1
              sat += 1
             elsif choisea=="NARUTO"
              mon += 1
              thu += 1
              fri += 1
              sun += 1
             elsif choisea=="封神演義"
              wed += 1
              thu += 1
              sat += 1
              sun += 1
             elsif choisea=="うすた京介"
              tue += 1
              wed += 1
              sat += 1
              sun += 1
             elsif choisea=="ブラクロ"
              mon += 1
              tue += 1
              wed += 1
              fri += 1
             elsif choisea=="遊戯王"
              wed += 1
              thu += 1
              fri += 1
              sun += 1
             elsif choisea=="るろ剣"
              mon += 1
              tue += 1
              wed += 1
              sun += 1
             elsif choisea=="キン肉マン"
              tue += 1
              thu += 1
              fri += 1
              sat += 1
             elsif choisea=="HUNTER×HUNTER"
              mon += 1
              wed += 1
              thu += 1
              fri += 1
             elsif choisea=="ハイキュー!!"
              mon += 1
              thu += 1
              sat += 1
              sun += 1
             end
             if choiseb=="ボーボボ"
              tue += 1
              wed += 1
              fri += 1
              sun += 1
             elsif choiseb=="こち亀"
              tue += 1
              thu += 1
              sat += 1
              sun += 1
             elsif choiseb=="ジョジョ"
              mon += 1
              tue += 1
              thu += 1
              sat += 1
             elsif choiseb=="聖闘士星矢"
              mon += 1
              tue += 1
              thu += 1
              fri += 1
             elsif choiseb=="BLEACH"
              mon += 1
              wed += 1
              thu += 1
              sat += 1
             elsif choiseb=="ワンピース"
              mon += 1
              tue += 1
              fri += 1
              sat += 1
             elsif choiseb=="銀魂"
              tue += 1
              wed += 1
              thu += 1
              sun += 1
             elsif choiseb=="ヒロアカ"
              mon += 1
              wed += 1
              fri += 1
              sat += 1
             elsif choiseb=="ドラゴンボール"
              mon += 1
              tue += 1
              fri += 1
              sun += 1
             elsif choiseb=="鬼滅の刃"
              mon += 1
              wed += 1
              fri += 1
              sun += 1
             elsif choiseb=="REBORN"
              mon += 1
              tue += 1
              wed += 1
              sat += 1
             elsif choiseb=="幽遊白書"
              wed += 1
              fri += 1
              sat += 1
              sun += 1
             elsif choiseb=="北斗の拳"
              tue += 1
              wed += 1
              fri += 1
              sat += 1
             elsif choiseb=="NARUTO"
              mon += 1
              thu += 1
              fri += 1
              sun += 1
             elsif choiseb=="封神演義"
              wed += 1
              thu += 1
              sat += 1
              sun += 1
             elsif choiseb=="うすた京介"
              tue += 1
              wed += 1
              sat += 1
              sun += 1
             elsif choiseb=="ブラクロ"
              mon += 1
              tue += 1
              wed += 1
              fri += 1
             elsif choiseb=="遊戯王"
              wed += 1
              thu += 1
              fri += 1
              sun += 1
             elsif choiseb=="るろ剣"
              mon += 1
              tue += 1
              wed += 1
              sun += 1
             elsif choiseb=="キン肉マン"
              tue += 1
              thu += 1
              fri += 1
              sat += 1
             elsif choiseb=="HUNTER×HUNTER"
              mon += 1
              wed += 1
              thu += 1
              fri += 1
             elsif choiseb=="ハイキュー!!"
              mon += 1
              thu += 1
              sat += 1
              sun += 1
             end
             if choisec=="ボーボボ"
              tue += 1
              wed += 1
              fri += 1
              sun += 1
             elsif choisec=="こち亀"
              tue += 1
              thu += 1
              sat += 1
              sun += 1
             elsif choisec=="ジョジョ"
              mon += 1
              tue += 1
              thu += 1
              sat += 1
             elsif choisec=="聖闘士星矢"
              mon += 1
              tue += 1
              thu += 1
              fri += 1
             elsif choisec=="BLEACH"
              mon += 1
              wed += 1
              thu += 1
              sat += 1
             elsif choisec=="ワンピース"
              mon += 1
              tue += 1
              fri += 1
              sat += 1
             elsif choisec=="銀魂"
              tue += 1
              wed += 1
              thu += 1
              sun += 1
             elsif choisec=="ヒロアカ"
              mon += 1
              wed += 1
              fri += 1
              sat += 1
             elsif choisec=="ドラゴンボール"
              mon += 1
              tue += 1
              fri += 1
              sun += 1
             elsif choisec=="鬼滅の刃"
              mon += 1
              wed += 1
              fri += 1
              sun += 1
             elsif choisec=="REBORN"
              mon += 1
              tue += 1
              wed += 1
              sat += 1
             elsif choisec=="幽遊白書"
              wed += 1
              fri += 1
              sat += 1
              sun += 1
             elsif choisec=="北斗の拳"
              tue += 1
              wed += 1
              fri += 1
              sat += 1
             elsif choisec=="NARUTO"
              mon += 1
              thu += 1
              fri += 1
              sun += 1
             elsif choisec=="封神演義"
              wed += 1
              thu += 1
              sat += 1
              sun += 1
             elsif choisec=="うすた京介"
              tue += 1
              wed += 1
              sat += 1
              sun += 1
             elsif choisec=="ブラクロ"
              mon += 1
              tue += 1
              wed += 1
              fri += 1
             elsif choisec=="遊戯王"
              wed += 1
              thu += 1
              fri += 1
              sun += 1
             elsif choisec=="るろ剣"
              mon += 1
              tue += 1
              wed += 1
              sun += 1
             elsif choisec=="キン肉マン"
              tue += 1
              thu += 1
              fri += 1
              sat += 1
             elsif choisec=="HUNTER×HUNTER"
              mon += 1
              wed += 1
              thu += 1
              fri += 1
             elsif choisec=="ハイキュー!!"
              mon += 1
              thu += 1
              sat += 1
              sun += 1
             end
             if choised=="ボーボボ"
              tue += 1
              wed += 1
              fri += 1
              sun += 1
             elsif choised=="こち亀"
              tue += 1
              thu += 1
              sat += 1
              sun += 1
             elsif choised=="ジョジョ"
              mon += 1
              tue += 1
              thu += 1
              sat += 1
             elsif choised=="聖闘士星矢"
              mon += 1
              tue += 1
              thu += 1
              fri += 1
             elsif choised=="BLEACH"
              mon += 1
              wed += 1
              thu += 1
              sat += 1
             elsif choised=="ワンピース"
              mon += 1
              tue += 1
              fri += 1
              sat += 1
             elsif choised=="銀魂"
              tue += 1
              wed += 1
              thu += 1
              sun += 1
             elsif choised=="ヒロアカ"
              mon += 1
              wed += 1
              fri += 1
              sat += 1
             elsif choised=="ドラゴンボール"
              mon += 1
              tue += 1
              fri += 1
              sun += 1
             elsif choised=="鬼滅の刃"
              mon += 1
              wed += 1
              fri += 1
              sun += 1
             elsif choised=="REBORN"
              mon += 1
              tue += 1
              wed += 1
              sat += 1
             elsif choised=="幽遊白書"
              wed += 1
              fri += 1
              sat += 1
              sun += 1
             elsif choised=="北斗の拳"
              tue += 1
              wed += 1
              fri += 1
              sat += 1
             elsif choised=="NARUTO"
              mon += 1
              thu += 1
              fri += 1
              sun += 1
             elsif choised=="封神演義"
              wed += 1
              thu += 1
              sat += 1
              sun += 1
             elsif choised=="うすた京介"
              tue += 1
              wed += 1
              sat += 1
              sun += 1
             elsif choised=="ブラクロ"
              mon += 1
              tue += 1
              wed += 1
              fri += 1
             elsif choised=="遊戯王"
              wed += 1
              thu += 1
              fri += 1
              sun += 1
             elsif choised=="るろ剣"
              mon += 1
              tue += 1
              wed += 1
              sun += 1
             elsif choised=="キン肉マン"
              tue += 1
              thu += 1
              fri += 1
              sat += 1
             elsif choised=="HUNTER×HUNTER"
              mon += 1
              wed += 1
              thu += 1
              fri += 1
             elsif choised=="ハイキュー!!"
              mon += 1
              thu += 1
              sat += 1
              sun += 1
             end
             if choisee=="ボーボボ"
              tue += 1
              wed += 1
              fri += 1
              sun += 1
             elsif choisee=="こち亀"
              tue += 1
              thu += 1
              sat += 1
              sun += 1
             elsif choisee=="ジョジョ"
              mon += 1
              tue += 1
              thu += 1
              sat += 1
             elsif choisee=="聖闘士星矢"
              mon += 1
              tue += 1
              thu += 1
              fri += 1
             elsif choisee=="BLEACH"
              mon += 1
              wed += 1
              thu += 1
              sat += 1
             elsif choisee=="ワンピース"
              mon += 1
              tue += 1
              fri += 1
              sat += 1
             elsif choisee=="銀魂"
              tue += 1
              wed += 1
              thu += 1
              sun += 1
             elsif choisee=="ヒロアカ"
              mon += 1
              wed += 1
              fri += 1
              sat += 1
             elsif choisee=="ドラゴンボール"
              mon += 1
              tue += 1
              fri += 1
              sun += 1
             elsif choisee=="鬼滅の刃"
              mon += 1
              wed += 1
              fri += 1
              sun += 1
             elsif choisee=="REBORN"
              mon += 1
              tue += 1
              wed += 1
              sat += 1
             elsif choisee=="幽遊白書"
              wed += 1
              fri += 1
              sat += 1
              sun += 1
             elsif choisee=="北斗の拳"
              tue += 1
              wed += 1
              fri += 1
              sat += 1
             elsif choisee=="NARUTO"
              mon += 1
              thu += 1
              fri += 1
              sun += 1
             elsif choisee=="封神演義"
              wed += 1
              thu += 1
              sat += 1
              sun += 1
             elsif choisee=="うすた京介"
              tue += 1
              wed += 1
              sat += 1
              sun += 1
             elsif choisee=="ブラクロ"
              mon += 1
              tue += 1
              wed += 1
              fri += 1
             elsif choisee=="遊戯王"
              wed += 1
              thu += 1
              fri += 1
              sun += 1
             elsif choisee=="るろ剣"
              mon += 1
              tue += 1
              wed += 1
              sun += 1
             elsif choisee=="キン肉マン"
              tue += 1
              thu += 1
              fri += 1
              sat += 1
             elsif choisee=="HUNTER×HUNTER"
              mon += 1
              wed += 1
              thu += 1
              fri += 1
             elsif choisee=="ハイキュー!!"
              mon += 1
              thu += 1
              sat += 1
              sun += 1
             end
             if choisef=="ボーボボ"
              tue += 1
              wed += 1
              fri += 1
              sun += 1
             elsif choisef=="こち亀"
              tue += 1
              thu += 1
              sat += 1
              sun += 1
             elsif choisef=="ジョジョ"
              mon += 1
              tue += 1
              thu += 1
              sat += 1
             elsif choisef=="聖闘士星矢"
              mon += 1
              tue += 1
              thu += 1
              fri += 1
             elsif choisef=="BLEACH"
              mon += 1
              wed += 1
              thu += 1
              sat += 1
             elsif choisef=="ワンピース"
              mon += 1
              tue += 1
              fri += 1
              sat += 1
             elsif choisef=="銀魂"
              tue += 1
              wed += 1
              thu += 1
              sun += 1
             elsif choisef=="ヒロアカ"
              mon += 1
              wed += 1
              fri += 1
              sat += 1
             elsif choisef=="ドラゴンボール"
              mon += 1
              tue += 1
              fri += 1
              sun += 1
             elsif choisef=="鬼滅の刃"
              mon += 1
              wed += 1
              fri += 1
              sun += 1
             elsif choisef=="REBORN"
              mon += 1
              tue += 1
              wed += 1
              sat += 1
             elsif choisef=="幽遊白書"
              wed += 1
              fri += 1
              sat += 1
              sun += 1
             elsif choisef=="北斗の拳"
              tue += 1
              wed += 1
              fri += 1
              sat += 1
             elsif choisef=="NARUTO"
              mon += 1
              thu += 1
              fri += 1
              sun += 1
             elsif choisef=="封神演義"
              wed += 1
              thu += 1
              sat += 1
              sun += 1
             elsif choisef=="うすた京介"
              tue += 1
              wed += 1
              sat += 1
              sun += 1
             elsif choisef=="ブラクロ"
              mon += 1
              tue += 1
              wed += 1
              fri += 1
             elsif choisef=="遊戯王"
              wed += 1
              thu += 1
              fri += 1
              sun += 1
             elsif choisef=="るろ剣"
              mon += 1
              tue += 1
              wed += 1
              sun += 1
             elsif choisef=="キン肉マン"
              tue += 1
              thu += 1
              fri += 1
              sat += 1
             elsif choisef=="HUNTER×HUNTER"
              mon += 1
              wed += 1
              thu += 1
              fri += 1
             elsif choisef=="ハイキュー!!"
              mon += 1
              thu += 1
              sat += 1
              sun += 1
             end
             if choiseg=="ボーボボ"
              tue += 1
              wed += 1
              fri += 1
              sun += 1
             elsif choiseg=="こち亀"
              tue += 1
              thu += 1
              sat += 1
              sun += 1
             elsif choiseg=="ジョジョ"
              mon += 1
              tue += 1
              thu += 1
              sat += 1
             elsif choiseg=="聖闘士星矢"
              mon += 1
              tue += 1
              thu += 1
              fri += 1
             elsif choiseg=="BLEACH"
              mon += 1
              wed += 1
              thu += 1
              sat += 1
             elsif choiseg=="ワンピース"
              mon += 1
              tue += 1
              fri += 1
              sat += 1
             elsif choiseg=="銀魂"
              tue += 1
              wed += 1
              thu += 1
              sun += 1
             elsif choiseg=="ヒロアカ"
              mon += 1
              wed += 1
              fri += 1
              sat += 1
             elsif choiseg=="ドラゴンボール"
              mon += 1
              tue += 1
              fri += 1
              sun += 1
             elsif choiseg=="鬼滅の刃"
              mon += 1
              wed += 1
              fri += 1
              sun += 1
             elsif choiseg=="REBORN"
              mon += 1
              tue += 1
              wed += 1
              sat += 1
             elsif choiseg=="幽遊白書"
              wed += 1
              fri += 1
              sat += 1
              sun += 1
             elsif choiseg=="北斗の拳"
              tue += 1
              wed += 1
              fri += 1
              sat += 1
             elsif choiseg=="NARUTO"
              mon += 1
              thu += 1
              fri += 1
              sun += 1
             elsif choiseg=="封神演義"
              wed += 1
              thu += 1
              sat += 1
              sun += 1
             elsif choiseg=="うすた京介"
              tue += 1
              wed += 1
              sat += 1
              sun += 1
             elsif choiseg=="ブラクロ"
              mon += 1
              tue += 1
              wed += 1
              fri += 1
             elsif choiseg=="遊戯王"
              wed += 1
              thu += 1
              fri += 1
              sun += 1
             elsif choiseg=="るろ剣"
              mon += 1
              tue += 1
              wed += 1
              sun += 1
             elsif choiseg=="キン肉マン"
              tue += 1
              thu += 1
              fri += 1
              sat += 1
             elsif choiseg=="HUNTER×HUNTER"
              mon += 1
              wed += 1
              thu += 1
              fri += 1
             elsif choiseg=="ハイキュー!!"
              mon += 1
              thu += 1
              sat += 1
              sun += 1
             end
              if mon == 4 and tue == 4 and wed == 4 and thu == 4 and fri == 4 and sat == 4 and sun == 4
               puts choisea
               puts choiseb
               puts choisec
               puts choised
               puts choisee
               puts choisef
               puts choiseg
               puts ""
              end
              mon=0
              tue=0
              wed=0
              thu=0
              fri=0
              sat=0
              sun=0
            end
           end
          end
         end
        end
       end      
      end
     end
    end
  end
end

よかったらシェアしてね!
  • URLをコピーしました!
  • URLをコピーしました!

この記事を書いた人

目次