tag:crieit.net,2005:https://crieit.net/tags/%E3%83%91%E3%83%AF%E3%83%95%E3%83%AB%E3%82%B7%E3%83%83%E3%82%AF%E3%82%B9/feed 「パワフルシックス」の記事 - Crieit Crieitでタグ「パワフルシックス」に投稿された最近の記事 2019-07-12T20:50:52+09:00 https://crieit.net/tags/%E3%83%91%E3%83%AF%E3%83%95%E3%83%AB%E3%82%B7%E3%83%83%E3%82%AF%E3%82%B9/feed tag:crieit.net,2005:PublicArticle/15225 2019-07-11T23:01:19+09:00 2019-07-12T20:50:52+09:00 https://crieit.net/posts/9dfd723a06698783e6171209114714c5 九九を50乗しようぜ☆(^~^)<その4> <p><前回の続き></p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d273fb466bce.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d273fb466bce.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 網羅と 総当たりは 違うんじゃないの?」</p> <pre><code>網羅 ≦ 総当たり </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 多分こうだよな☆」</p> <pre><code>組み合わせ ≦ 順列 (0≦n) </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d27403e97604.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d27403e97604.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 そして こうだろ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 組み合わせ で プログラム組むには ソートとか いるだろうか☆?」</p> <pre><code>{1, 2, 2} {2, 1, 2} {2, 2, 1} </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 上図の3つのセットは 組み合わせで言うと全部同じだからな☆ 小さいもの順に並び替えると分かる☆」</p> <pre><code>{1, 2, 2} {1, 2, 2} {1, 2, 2} </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d27403e97604.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d27403e97604.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 Python3 で 小さなもの順に並び替えてくれだぜ☆」</p> <pre><code>def append_cover(tl, br, bl, tr, succeed, failed): numbers = [tl, br, bl] numbers.sort() key = ((numbers[0]*1000 + numbers[1]) * 1000 + numbers[2])*1000 + tr if key not in cover_dict: cover_dict[key] = {"succeed": 0, "failed": 0} value = {"succeed": cover_dict[key]["succeed"] + succeed, "failed": cover_dict[key]["failed"] + failed} cover_dict[key] = value def init_cover_dict(): import random for tl in range(0, 6): for br in range(0, 6): for bl in range(0, 6): for tr in range(0, 6): numbers = [pow6[tl], pow6[br], pow6[bl]] numbers.sort() key = ((numbers[0]*1000 + numbers[1]) * 1000 + numbers[2])*1000 + pow6[tr] value = {"succeed": 0, "failed": 0} cover_dict[key] = value </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 ソートしたら昇順になるのかだぜ☆?」</p> <pre><code># 正方形縛り Succeed : 11 Failed : 0 Both : 0 None : 325 Total : 336 Rate : 0.0327 # 長方形 Succeed : 26 Failed : 4 Both : 0 None : 306 Total : 336 Rate : 0.0774 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d27403e97604.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d27403e97604.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 それでも ナン が多いな……☆ ナンって何なんだぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 ナンの中には 存在しない組み合わせ もあるだろ☆<br /> 存在しない組み合わせは 出てこなかったら Succeed だよな☆?」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d273fb466bce.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d273fb466bce.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 ややこしいっ! 存在しないから 出てこなかった って 何なのよ!」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 None を止めて、Nothing succeed と、 Unknown に分けるかだぜ☆?」</p> <pre><code>def append_cover(tl, br, bl, tr, prop_name, offset): numbers = [tl, br, bl] numbers.sort() key = ((numbers[0]*1000 + numbers[1]) * 1000 + numbers[2])*1000 + tr if key not in cover_dict: new_key(key) cover_dict[key]["nothing_flag"] = numbers[0] * \ numbers[1]*numbers[2] % 1000 != pow6[tr] cover_dict[key][prop_name] += offset def init_cover_dict(): import random for tl in range(0, 6): for br in range(0, 6): for bl in range(0, 6): for tr in range(0, 6): numbers = [pow6[tl], pow6[br], pow6[bl]] numbers.sort() key = ((numbers[0]*1000 + numbers[1]) * 1000 + numbers[2])*1000 + pow6[tr] value = {"succeed": 0, "failed": 0, "nothing_flag": False, "nothing_succeed": 0} value["nothing_flag"] = numbers[0] * \ numbers[1]*numbers[2] % 1000 != pow6[tr] cover_dict[key] = value def show_cover_dict(): sum_succeed = 0 sum_failed = 0 sum_both = 0 sum_nothing_succeed = 0 sum_nothing_failed = 0 sum_unknown = 0 for key, value in cover_dict.items(): if value["nothing_flag"]: if 0 < value["nothing_succeed"]: sum_nothing_succeed += 1 else: sum_nothing_failed += 1 elif 0 < value["succeed"] and 0 < value["failed"]: sum_both += 1 elif 0 < value["succeed"]: sum_succeed += 1 elif 0 < value["failed"]: sum_failed += 1 else: sum_unknown += 1 # print("{}: {}".format(key, value)) print("Succeed : {}".format(sum_succeed)) print("Failed : {}".format(sum_failed)) print("Both : {}".format(sum_both)) print("Nothing succeed : {}".format(sum_nothing_succeed)) print("Nothing failed : {}".format(sum_nothing_failed)) print("Unknown : {}".format(sum_unknown)) total = sum_succeed+sum_failed+sum_both + \ sum_nothing_succeed+sum_nothing_failed+sum_unknown print("total : {}".format(total)) if 0 < total: print("Rate : {:>.4f}".format( (sum_succeed+sum_nothing_succeed)/total)) </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 眠……☆」</p> <pre><code>end = 19 for y in reversed(range(0, end-1)): for x in range(0, end-1): for y2 in range(y+1, end): for x2 in range(x+1, end): # 左上角、右下角、左下角 はレッドゾーンの外にあること。 # 右上角はレッドゾーンの中にあること。 if not is_red_zone(x, y2) and not is_red_zone(x2, y) and not is_red_zone(x, y) and is_red_zone(x2, y2): tl = table[y2][x] br = table[y][x2] bl = table[y][x] tr = table[y2][x2] # 左上角、右下角、左下角 は 0 を踏んではいけない。 stamped_zero = False if tl == 0 or br == 0 or bl == 0: stamped_zero = True # 3つの角のうち 2つだけが同じなら、それは左上と右下の配置でなければいけない。ただし左下が 001 ならこのルールは適用外。 secondary_failed = False if bl != 1 and ((bl == tl and bl != br) or (bl == br and bl != tl)): secondary_failed = True # 正方形なら。 square = False if y2-y == x2-x: square = True if not stamped_zero and not secondary_failed: # and square: # 成功。数が合っているか確認する。 result = "" if tl*br*bl % 1000 == tr: result = "o" append_cover(tl, br, bl, tr, "succeed", 1) else: result = "x" append_cover(tl, br, bl, tr, "failed", 1) """ # 成功を表示。 if result == "o": print("[{} {}:{}][{} {}:{}][{} {}:{}]=[{} {}:{}({})]{} ".format( x, y2, tl, x2, y, br, x, y, bl, x2, y2, tr, tl*br*bl % 1000, result)) show_rect([[x, y2], [x2, y], [x, y], [x2, y2]]) """ """ # 反例を表示。 if result == "x": print("[{} {}:{}][{} {}:{}][{} {}:{}]=[{} {}:{}({})]{} ".format( x, y2, tl, x2, y, br, x, y, bl, x2, y2, tr, tl*br*bl % 1000, result)) show_rect([[x, y2], [x2, y], [x, y], [x2, y2]]) """ print("") </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 あれっ、2乗の判定が間違っていたかも知らん☆ 変えた☆」</p> <pre><code># 長方形 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] 624 249 376 1 624 625 624 1 376 249 0 249 376 1 624 [625] [624] [ 1] [376] 249 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] 376 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] 625 376 624 624 376 0 376 624 624 376 0 376 624 [624] [376] 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 [ 1] [624] 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 [376] 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] 624 0 624 376 376 624 0 624 376 376 624 249 376 1 624 [625] [624] [ 1] [376] 249 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] 376 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] 625 0 625 0 625 0 625 0 625 0 625 376 624 [624] [376] 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 [ 1] [624] 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 [376] 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 Succeed : 26 Failed : 0 Both : 0 Nothing succeed : 0 Nothing failed : 280 Unknown : 30 total : 336 Rate : 0.0774 Info : Finished. </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 長方形で フェイルドが 0 になったのは 不具合なのかどうか☆<br /> また今度調べよう☆ 寝よ☆」</p> <h2 id="昨日から見て次の日"><a href="#%E6%98%A8%E6%97%A5%E3%81%8B%E3%82%89%E8%A6%8B%E3%81%A6%E6%AC%A1%E3%81%AE%E6%97%A5">昨日から見て次の日</a></h2> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 コードが見づらいんで、ループする部分と、処理内容を分けるぜ☆」</p> <pre><code>def brute_force(callback): """ 総当たり """ end = 19 for y in reversed(range(0, end-1)): for x in range(0, end-1): for y2 in range(y+1, end): for x2 in range(x+1, end): callback(x, y, x2, y2) print("") def process(x, y, x2, y2): # 左上角、右下角、左下角 はレッドゾーンの外にあること。 # 右上角はレッドゾーンの中にあること。 if not is_red_zone(x, y2) and not is_red_zone(x2, y) and not is_red_zone(x, y) and is_red_zone(x2, y2): tl = table[y2][x] br = table[y][x2] bl = table[y][x] tr = table[y2][x2] # 左上角、右下角、左下角 は 0 を踏んではいけない。 stamped_zero = False if tl == 0 or br == 0 or bl == 0: stamped_zero = True # 3つの角のうち 2つだけが同じなら、それは左上と右下の配置でなければいけない。ただし左下が 001 ならこのルールは適用外。 secondary_failed = False if bl != 1 and ((bl == tl and bl != br) or (bl == br and bl != tl)): secondary_failed = True # 正方形なら。 square = False if y2-y == x2-x: square = True if not stamped_zero and not secondary_failed: # and square: # 成功。数が合っているか確認する。 result = "" if tl*br*bl % 1000 == tr: result = "o" append_cover(tl, br, bl, tr, "succeed", 1) else: result = "x" append_cover(tl, br, bl, tr, "failed", 1) """ # 成功を表示。 if result == "o": print("[{} {}:{}][{} {}:{}][{} {}:{}]=[{} {}:{}({})]{} ".format( x, y2, tl, x2, y, br, x, y, bl, x2, y2, tr, tl*br*bl % 1000, result)) show_rect([[x, y2], [x2, y], [x, y], [x2, y2]]) """ """ # 反例を表示。 if result == "x": print("[{} {}:{}][{} {}:{}][{} {}:{}]=[{} {}:{}({})]{} ".format( x, y2, tl, x2, y, br, x, y, bl, x2, y2, tr, tl*br*bl % 1000, result)) show_rect([[x, y2], [x2, y], [x, y], [x2, y2]]) """ return brute_force(process) </code></pre> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d273fb466bce.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d273fb466bce.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 右上だけ 赤枠を踏むだの どうだのも 分けてしまっていいんじゃないの?」</p> <pre><code>def brute_force(callback): """ 総当たり """ end = 19 for y in reversed(range(0, end-1)): for x in range(0, end-1): for y2 in range(y+1, end): for x2 in range(x+1, end): stamp_rectangle(x, y, x2, y2, callback) print("") def stamp_rectangle(x, y, x2, y2, callback): tl = table[y2][x] br = table[y][x2] bl = table[y][x] tr = table[y2][x2] # 左上角、右下角、左下角 はレッドゾーンの外にあること。 # 右上角はレッドゾーンの中にあること。 if not is_red_zone(x, y2) and not is_red_zone(x2, y) and not is_red_zone(x, y) and is_red_zone(x2, y2): append_cover(tl, br, bl, tr, "stamped", 1) callback(x, y, x2, y2) else: append_cover(tl, br, bl, tr, "can_not_stamp", 1) return </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 踏んだか、踏んでないかで分けれるよな☆」</p> <pre><code> 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] 624 249 376 1 624 625 624 1 376 249 0 249 376 1 624 [625] [624] [ 1] [376] 249 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] 376 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] 625 376 624 624 376 0 376 624 624 376 0 376 624 [624] [376] 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 [ 1] [624] 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 [376] 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] 624 0 624 376 376 624 0 624 376 376 624 249 376 1 624 [625] [624] [ 1] [376] 249 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] 376 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] 625 0 625 0 625 0 625 0 625 0 625 376 624 [624] [376] 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 [ 1] [624] 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 [376] 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 Stamped : 100 Can not stamp : 132 All : 232 </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d273fd66bb1c.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 あれっ☆? 232 箇所しか 長方形を作れないのかだぜ☆?」</p> <p><書きかけ></p> むずでょ tag:crieit.net,2005:PublicArticle/15221 2019-07-10T21:03:50+09:00 2019-07-11T22:30:47+09:00 https://crieit.net/posts/e70711c54f6a7ad92b0952ed45627f02 九九を50乗しようぜ☆(^~^)<その3> <p><前回の続き></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 反例を 18個ぐらい かいつまんで 見ていこうぜ☆?」</p> <h2 id="反例1"><a href="#%E5%8F%8D%E4%BE%8B1">反例1</a></h2> <pre><code>[11 18:624][16 13:624][11 13:624]=[16 18:249(624)]x 1 624 249 376 625 376 249 624 1 0 1 <624> 249 376 [625] [376] <249> [624] [ 1] 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] [624] 249 376 1 624 625 624 1 376 249 0 249 376 1 624 [625] [624] [ 1] [376] [249] 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] [376] 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] [625] 376 624 624 376 0 376 624 624 376 0 376 <624> 624 376 0 376 <624> 624 376 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 624 249 376 [625] [376] [249] [624] [ 1] 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] [624] 0 624 376 376 624 0 624 376 376 624 249 376 1 624 [625] [624] [ 1] [376] [249] 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] [376] 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] [625] 0 625 0 625 0 625 0 625 0 625 376 624 624 376 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 624×624×624 は 249と624のうち好きな方を任意に選択できるな☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 よくできた反例だぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 次の反例を」</p> <h2 id="反例2"><a href="#%E5%8F%8D%E4%BE%8B2">反例2</a></h2> <pre><code>[13 16:624][16 13:624][13 13:376]=[16 16:1(376)]x 1 624 249 376 625 376 249 624 1 0 1 624 249 376 [625] [376] [249] [624] [ 1] 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] [624] 249 376 1 624 625 624 1 376 249 0 249 376 1 <624> [625] [624] < 1> [376] [249] 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] [376] 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] [625] 376 624 624 376 0 376 624 624 376 0 376 624 624 <376> 0 376 <624> 624 376 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 624 249 376 [625] [376] [249] [624] [ 1] 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] [624] 0 624 376 376 624 0 624 376 376 624 249 376 1 624 [625] [624] [ 1] [376] [249] 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] [376] 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] [625] 0 625 0 625 0 625 0 625 0 625 376 624 624 376 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 624×624×376 は 1と376のうち好きな方を任意に選択できるな☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 これも よくできた反例だぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 次の反例を」</p> <h2 id="反例3"><a href="#%E5%8F%8D%E4%BE%8B3">反例3</a></h2> <pre><code>[13 18:376][18 13:376][13 13:376]=[18 18:1(376)]x 1 624 249 376 625 376 249 624 1 0 1 624 249 <376> [625] [376] [249] [624] < 1> 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] [624] 249 376 1 624 625 624 1 376 249 0 249 376 1 624 [625] [624] [ 1] [376] [249] 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] [376] 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] [625] 376 624 624 376 0 376 624 624 376 0 376 624 624 <376> 0 376 624 624 <376> 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 624 249 376 [625] [376] [249] [624] [ 1] 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] [624] 0 624 376 376 624 0 624 376 376 624 249 376 1 624 [625] [624] [ 1] [376] [249] 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] [376] 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] [625] 0 625 0 625 0 625 0 625 0 625 376 624 624 376 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 376×376×376 は 1と376のうち好きな方を任意に選択できるな☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 3乗は 嫌になるな☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 次の反例を」</p> <h2 id="反例4"><a href="#%E5%8F%8D%E4%BE%8B4">反例4</a></h2> <pre><code>[11 16:376][16 11:376][11 11:376]=[16 16:1(376)]x 1 624 249 376 625 376 249 624 1 0 1 624 249 376 [625] [376] [249] [624] [ 1] 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] [624] 249 376 1 624 625 624 1 376 249 0 249 <376> 1 624 [625] [624] < 1> [376] [249] 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] [376] 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] [625] 376 624 624 376 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 <376> 376 624 0 624 <376> 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 624 249 376 [625] [376] [249] [624] [ 1] 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] [624] 0 624 376 376 624 0 624 376 376 624 249 376 1 624 [625] [624] [ 1] [376] [249] 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] [376] 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] [625] 0 625 0 625 0 625 0 625 0 625 376 624 624 376 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 これも 376の3乗だぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 まあ、1 は掛けた相手になる数だしな☆<br /> 点対称であることを攻められると こうなる☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 次の反例を」</p> <h2 id="反例5"><a href="#%E5%8F%8D%E4%BE%8B5">反例5</a></h2> <pre><code>[11 18:624][18 11:624][11 11:376]=[18 18:1(376)]x 1 624 249 376 625 376 249 624 1 0 1 <624> 249 376 [625] [376] [249] [624] < 1> 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] [624] 249 376 1 624 625 624 1 376 249 0 249 376 1 624 [625] [624] [ 1] [376] [249] 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] [376] 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] [625] 376 624 624 376 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 <376> 376 624 0 624 376 376 <624> 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 624 249 376 [625] [376] [249] [624] [ 1] 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] [624] 0 624 376 376 624 0 624 376 376 624 249 376 1 624 [625] [624] [ 1] [376] [249] 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] [376] 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] [625] 0 625 0 625 0 625 0 625 0 625 376 624 624 376 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 これも 624の2乗×376だぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 1 は弱点だよな☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 次の反例を」</p> <h2 id="反例6"><a href="#%E5%8F%8D%E4%BE%8B6">反例6</a></h2> <pre><code>[13 16:624][18 11:624][13 11:624]=[18 16:249(624)]x 1 624 249 376 625 376 249 624 1 0 1 624 249 376 [625] [376] [249] [624] [ 1] 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] [624] 249 376 1 624 625 624 1 376 249 0 249 376 1 <624> [625] [624] [ 1] [376] <249> 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] [376] 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] [625] 376 624 624 376 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 376 376 <624> 0 624 376 376 <624> 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 624 249 376 [625] [376] [249] [624] [ 1] 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] [624] 0 624 376 376 624 0 624 376 376 624 249 376 1 624 [625] [624] [ 1] [376] [249] 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] [376] 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] [625] 0 625 0 625 0 625 0 625 0 625 376 624 624 376 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 624の3乗は 最初の反例と同じだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 これも 1 が からむやつな☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 次の反例を」</p> <h2 id="反例7"><a href="#%E5%8F%8D%E4%BE%8B7">反例7</a></h2> <pre><code>[1 8:624][6 3:624][1 3:624]=[6 8:249(624)]x 1 624 249 376 625 376 249 624 1 0 1 624 249 376 [625] [376] [249] [624] [ 1] 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] [624] 249 376 1 624 625 624 1 376 249 0 249 376 1 624 [625] [624] [ 1] [376] [249] 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] [376] 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] [625] 376 624 624 376 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 <624> 249 376 [625] [376] <249> [624] [ 1] 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] [624] 0 624 376 376 624 0 624 376 376 624 249 376 1 624 [625] [624] [ 1] [376] [249] 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] [376] 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] [625] 0 625 0 625 0 625 0 625 0 625 376 <624> 624 376 0 376 <624> 624 376 0 376 624 624 376 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 これも 右上の九九でやった 最初の反例 を 左下の九九でやってるだけだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 じゃあ そういうの これからも出てくるだろ☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 次の反例を」</p> <h2 id="反例8"><a href="#%E5%8F%8D%E4%BE%8B8">反例8</a></h2> <pre><code>(反例 8) [1 18:624][16 3:624][1 3:624]=[16 18:249(624)]x 1 <624> 249 376 625 376 249 624 1 0 1 624 249 376 [625] [376] <249> [624] [ 1] 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] [624] 249 376 1 624 625 624 1 376 249 0 249 376 1 624 [625] [624] [ 1] [376] [249] 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] [376] 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] [625] 376 624 624 376 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 624 249 376 [625] [376] [249] [624] [ 1] 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] [624] 0 624 376 376 624 0 624 376 376 624 249 376 1 624 [625] [624] [ 1] [376] [249] 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] [376] 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] [625] 0 625 0 625 0 625 0 625 0 625 376 <624> 624 376 0 376 624 624 376 0 376 624 624 376 0 376 <624> 624 376 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 これも 624の3乗 だぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 この時点で 反例1~8を全部埋める方法は 思いついているが、<br /> 正しい例も潰してしまいそうなのが 悩みだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 次の反例を」</p> <h2 id="反例9"><a href="#%E5%8F%8D%E4%BE%8B9">反例9</a></h2> <pre><code>(反例 9) [3 6:624][6 3:624][3 3:376]=[6 6:1(376)]x 1 624 249 376 625 376 249 624 1 0 1 624 249 376 [625] [376] [249] [624] [ 1] 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] [624] 249 376 1 624 625 624 1 376 249 0 249 376 1 624 [625] [624] [ 1] [376] [249] 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] [376] 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] [625] 376 624 624 376 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 624 249 376 [625] [376] [249] [624] [ 1] 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] [624] 0 624 376 376 624 0 624 376 376 624 249 376 1 <624> [625] [624] < 1> [376] [249] 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] [376] 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] [625] 0 625 0 625 0 625 0 625 0 625 376 624 624 <376> 0 376 <624> 624 376 0 376 624 624 376 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 反例2と同様の 624の2乗×376 だぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 じゃあ 既存ルールを拡張して 反例全部 潰すかだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 まだ反例は 9個 残っているぜ☆ そんなこと できるのかだぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 なんで途中で判断できるの?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 事実が見えたわけではない☆ 新しい仮説が思いついただけだぜ☆<br /> 良い仮説を お見せしよう☆」</p> <pre><code>def is_red_zone(x, y): """ 対角線上に現れる、九九エリアの右上の区画。 """ # 1辺10を1区画と考えたときの、対角線上にある区画。 x3 = x // 10 y3 = y // 10 if(x3 == y3): x2 = x % 10 y2 = y % 10 if(4 <= x2 and x2 <= 8 and 4 <= y2 and y2 <= 8): # 九九エリアの右上の区画。 return True elif(0 <= x2 and x2 <= 3 and 0 <= y2 and y2 <= 3): # 九九エリアの左下の区画。 return True return False </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 赤枠の位置を変える☆ 真実は それだけだぜ☆」</p> <pre><code> 1 624 249 376 625 376 249 624 1 0 1 624 249 376 [625] [376] [249] [624] [ 1] 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] [624] 249 376 1 624 625 624 1 376 249 0 249 376 1 624 [625] [624] [ 1] [376] [249] 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] [376] 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] [625] 376 624 624 376 0 376 624 624 376 0 [376] [624] [624] [376] 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 [249] [376] [ 1] [624] 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 [624] [376] [376] [624] 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 [ 1] [624] [249] [376] 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 624 249 376 [625] [376] [249] [624] [ 1] 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] [624] 0 624 376 376 624 0 624 376 376 624 249 376 1 624 [625] [624] [ 1] [376] [249] 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] [376] 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] [625] 0 625 0 625 0 625 0 625 0 625 [376] [624] [624] [376] 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [249] [376] [ 1] [624] 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 [624] [376] [376] [624] 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 1] [624] [249] [376] 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 もっと かっちりとした赤枠の位置もあると思うが テーブルを変えるのが めんどくさいので 対処療法とした☆」</p> <pre><code># 正方形縛り Info : Succeed 16 Info : Failed 0 Info : Rate 1.0000 # 長方形 Info : Succeed 1256 Info : Failed 240 Info : Rate 0.8396 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 お父ん、成功例 16 は全てのケースを網羅できてないだろう☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 赤枠をでかくしすぎたんじゃないの?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 じゃあ ちょっと 小さくするかだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 そんなんで いいのか……☆」</p> <pre><code>def is_red_zone(x, y): """ 対角線上に現れる、九九エリアの右上の区画。 """ # 1辺10を1区画と考えたときの、対角線上にある区画。 x3 = x // 10 y3 = y // 10 if(x3 == y3): x2 = x % 10 y2 = y % 10 if(4 <= x2 and x2 <= 8 and 4 <= y2 and y2 <= 8): # 九九エリアの右上の区画。 return True elif(1 <= x2 and x2 <= 3 and 1 <= y2 and y2 <= 3): # 九九エリアの左下の区画。一番左下を除く。 return True return False </code></pre> <pre><code> 1 624 249 376 625 376 249 624 1 0 1 624 249 376 [625] [376] [249] [624] [ 1] 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] [624] 249 376 1 624 625 624 1 376 249 0 249 376 1 624 [625] [624] [ 1] [376] [249] 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] [376] 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] [625] 376 624 624 376 0 376 624 624 376 0 376 [624] [624] [376] 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 [376] [ 1] [624] 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 [376] [376] [624] 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 624 249 376 [625] [376] [249] [624] [ 1] 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] [624] 0 624 376 376 624 0 624 376 376 624 249 376 1 624 [625] [624] [ 1] [376] [249] 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] [376] 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] [625] 0 625 0 625 0 625 0 625 0 625 376 [624] [624] [376] 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 [376] [ 1] [624] 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 [376] [376] [624] 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 </code></pre> <pre><code># 正方形縛り Info : Succeed 64 Info : Failed 0 Info : Rate 1.0000 # 長方形 Info : Succeed 1572 Info : Failed 252 Info : Rate 0.8618 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 なんで 長方形のレートが上がってるんだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 外枠は ハズレが多いんじゃないの?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 じゃあ ちょっと 削るかだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 そんなんで いいのか……☆」</p> <pre><code>def is_red_zone(x, y): """ 対角線上に現れる、九九エリアの右上の区画。 """ # 1辺10を1区画と考えたときの、対角線上にある区画。 x3 = x // 10 y3 = y // 10 if(x3 == y3): x2 = x % 10 y2 = y % 10 if(4 <= x2 and x2 <= 7 and 4 <= y2 and y2 <= 7): # 九九エリアの右上の区画。大外を除く。 return True elif(1 <= x2 and x2 <= 3 and 1 <= y2 and y2 <= 3): # 九九エリアの左下の区画。大外を除く。 return True return False </code></pre> <pre><code> 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] 624 249 376 1 624 625 624 1 376 249 0 249 376 1 624 [625] [624] [ 1] [376] 249 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] 376 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] 625 376 624 624 376 0 376 624 624 376 0 376 [624] [624] [376] 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 [376] [ 1] [624] 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 [376] [376] [624] 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] 624 0 624 376 376 624 0 624 376 376 624 249 376 1 624 [625] [624] [ 1] [376] 249 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] 376 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] 625 0 625 0 625 0 625 0 625 0 625 376 [624] [624] [376] 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 [376] [ 1] [624] 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 [376] [376] [624] 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 </code></pre> <pre><code># 正方形縛り Info : Succeed 60 Info : Failed 0 Info : Rate 1.0000 # 長方形 Info : Succeed 1272 Info : Failed 120 Info : Rate 0.9138 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 うわっ、長方形のレートが上がってきた、正方形は下がった☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 外枠は どうとでも 当たりやすいのよ」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 削りゃ レートが上がるのかだぜ☆?」</p> <pre><code>def is_red_zone(x, y): """ 対角線上に現れる、九九エリアの右上の区画。 """ # 1辺10を1区画と考えたときの、対角線上にある区画。 x3 = x // 10 y3 = y // 10 if(x3 == y3): x2 = x % 10 y2 = y % 10 if(4 <= x2 and x2 <= 7 and 4 <= y2 and y2 <= 7): # 九九エリアの右上の区画。大外を除く。 return True elif(2 <= x2 and x2 <= 3 and 2 <= y2 and y2 <= 3): # 九九エリアの左下の区画。 return True elif(x2 == 1 and y2 == 1): # 九九エリアの左下の区画。大外を除く。 return True return False </code></pre> <pre><code> 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] 624 249 376 1 624 625 624 1 376 249 0 249 376 1 624 [625] [624] [ 1] [376] 249 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] 376 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] 625 376 624 624 376 0 376 624 624 376 0 376 624 [624] [376] 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 [ 1] [624] 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 [376] 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] 624 0 624 376 376 624 0 624 376 376 624 249 376 1 624 [625] [624] [ 1] [376] 249 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] 376 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] 625 0 625 0 625 0 625 0 625 0 625 376 624 [624] [376] 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 [ 1] [624] 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 [376] 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 </code></pre> <pre><code># 正方形縛り Info : Succeed 70 Info : Failed 0 Info : Rate 1.0000 # 長方形 Info : Succeed 1192 Info : Failed 132 Info : Rate 0.9003 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 ウーム☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 機械学習すれば 答えは出るんじゃないの?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 思た☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 思たが あと30分で寝たい☆ 反例を10個ほど 見てみようぜ☆?」</p> <h2 id="その2 反例1"><a href="#%E3%81%9D%E3%81%AE%EF%BC%92%E3%80%80%E5%8F%8D%E4%BE%8B1">その2 反例1</a></h2> <pre><code>[13 16:624][16 0:249][13 0:376]=[16 16:1(376)]x 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] 624 249 376 1 624 625 624 1 376 249 0 249 376 1 <624> [625] [624] < 1> [376] 249 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] 376 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] 625 376 624 624 376 0 376 624 624 376 0 376 624 [624] [376] 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 [ 1] [624] 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 [376] 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] 624 0 624 376 376 624 0 624 376 376 624 249 376 1 624 [625] [624] [ 1] [376] 249 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] 376 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] 625 0 625 0 625 0 625 0 625 0 625 376 624 [624] [376] 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 [ 1] [624] 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 [376] 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 <376> 625 376 <249> 624 1 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 出力は スクロールして流れていったので、分かるところだけだぜ☆<br /> 大外枠を利用した 624×249×376 で答え 1 の間違いだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 また 1 ……☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 その 1 を防ぐための 正方形と 対角線 だったんじゃないの?」</p> <h2 id="その2 反例2"><a href="#%E3%81%9D%E3%81%AE%EF%BC%92%E3%80%80%E5%8F%8D%E4%BE%8B2">その2 反例2</a></h2> <pre><code>[13 16:624][14 0:625][13 0:376]=[14 16:625(0)]x 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] 624 249 376 1 624 625 624 1 376 249 0 249 376 1 <624> <625> [624] [ 1] [376] 249 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] 376 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] 625 376 624 624 376 0 376 624 624 376 0 376 624 [624] [376] 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 [ 1] [624] 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 [376] 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] 624 0 624 376 376 624 0 624 376 376 624 249 376 1 624 [625] [624] [ 1] [376] 249 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] 376 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] 625 0 625 0 625 0 625 0 625 0 625 376 624 [624] [376] 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 [ 1] [624] 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 [376] 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 <376> <625> 376 249 624 1 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 これも大外枠を利用している☆ 624×625×376 で答え 625 の間違いだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 大外枠は 当てやすいのかだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 次の反例を」</p> <h2 id="その2 反例3"><a href="#%E3%81%9D%E3%81%AE%EF%BC%92%E3%80%80%E5%8F%8D%E4%BE%8B3">その2 反例3</a></h2> <pre><code>[11 16:376][16 0:249][11 0:624]=[16 16:1(376)]x 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] 624 249 376 1 624 625 624 1 376 249 0 249 <376> 1 624 [625] [624] < 1> [376] 249 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] 376 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] 625 376 624 624 376 0 376 624 624 376 0 376 624 [624] [376] 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 [ 1] [624] 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 [376] 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] 624 0 624 376 376 624 0 624 376 376 624 249 376 1 624 [625] [624] [ 1] [376] 249 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] 376 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] 625 0 625 0 625 0 625 0 625 0 625 376 624 [624] [376] 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 [ 1] [624] 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 [376] 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 <624> 249 376 625 376 <249> 624 1 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 これも大外枠を利用している☆ 376×249×624 で答え 1 の間違いだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 大外枠を防いでくる☆」</p> <pre><code>def is_red_zone(x, y): """ 対角線上に現れる、九九エリアの右上の区画。 """ if (y == 0 and 0 < x) or (x == 0 and 0 < y): # 原点を除く、全左辺と全底辺を除く。 return True # 1辺10を1区画と考えたときの、対角線上にある区画。 x3 = x // 10 y3 = y // 10 if(x3 == y3): x2 = x % 10 y2 = y % 10 if 4 <= x2 and x2 <= 7 and 4 <= y2 and y2 <= 7: # 九九エリアの右上の区画。大外を除く。 return True elif 2 <= x2 and x2 <= 3 and 2 <= y2 and y2 <= 3: # 九九エリアの左下の区画。 return True elif x2 == 1 and y2 == 1: # 九九エリアの左下の区画。大外を除く。 return True return False </code></pre> <pre><code>[ 1] 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 [624] 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] 624 [249] 376 1 624 625 624 1 376 249 0 249 376 1 624 [625] [624] [ 1] [376] 249 [376] 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] 376 [625] 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] 625 [376] 624 624 376 0 376 624 624 376 0 376 624 [624] [376] 0 376 624 624 376 [249] 376 1 624 625 624 1 376 249 0 249 376 [ 1] [624] 625 624 1 376 249 [624] 376 376 624 0 624 376 376 624 0 624 [376] 376 624 0 624 376 376 624 [ 1] 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 [ 0] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 [ 1] 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 [624] 376 376 624 [ 0] [624] [376] [376] 624 0 624 376 376 624 0 624 376 376 624 [249] 376 1 624 [625] [624] [ 1] [376] 249 0 249 376 1 624 625 624 1 376 249 [376] 624 624 376 [ 0] [376] [624] [624] 376 0 376 624 624 376 0 376 624 624 376 [625] 0 625 0 [625] [ 0] [625] [ 0] 625 0 625 0 625 0 625 0 625 0 625 [376] 624 [624] [376] 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [249] 376 [ 1] [624] 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 [624] [376] 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 [624] [249] [376] [625] [376] [249] [624] [ 1] [ 0] [ 1] [624] [249] [376] [625] [376] [249] [624] [ 1] </code></pre> <pre><code># 正方形縛り Info : Succeed 48 Info : Failed 0 Info : Rate 1.0000 # 長方形 Info : Succeed 858 Info : Failed 88 Info : Rate 0.9070 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 長方形で 間違いが88個しかないというのは いいとこ攻めてる のでは☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 レートは 微々たるものしか 上がってないけどな☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 反例を」</p> <h2 id="その3 反例1"><a href="#%E3%81%9D%E3%81%AE%EF%BC%93%E3%80%80%E5%8F%8D%E4%BE%8B1">その3 反例1</a></h2> <pre><code>[11 16:376][16 1:376][11 1:376]=[16 16:1(376)]x [ 1] 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 [624] 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] 624 [249] 376 1 624 625 624 1 376 249 0 249 <376> 1 624 [625] [624] < 1> [376] 249 [376] 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] 376 [625] 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] 625 [376] 624 624 376 0 376 624 624 376 0 376 624 [624] [376] 0 376 624 624 376 [249] 376 1 624 625 624 1 376 249 0 249 376 [ 1] [624] 625 624 1 376 249 [624] 376 376 624 0 624 376 376 624 0 624 [376] 376 624 0 624 376 376 624 [ 1] 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 [ 0] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 [ 1] 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 [624] 376 376 624 [ 0] [624] [376] [376] 624 0 624 376 376 624 0 624 376 376 624 [249] 376 1 624 [625] [624] [ 1] [376] 249 0 249 376 1 624 625 624 1 376 249 [376] 624 624 376 [ 0] [376] [624] [624] 376 0 376 624 624 376 0 376 624 624 376 [625] 0 625 0 [625] [ 0] [625] [ 0] 625 0 625 0 625 0 625 0 625 0 625 [376] 624 [624] [376] 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [249] 376 [ 1] [624] 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 [624] [376] 376 624 0 624 376 376 624 0 624 <376> 376 624 0 624 <376> 376 624 1 [624] [249] [376] [625] [376] [249] [624] [ 1] [ 0] [ 1] [624] [249] [376] [625] [376] [249] [624] [ 1] </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 大外を利用した 376×376×376 で答え 1 の間違いだぜ☆<br /> 376 は 何乗しても 376 だな☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 1 を防ぐのは 正方形 しか なくないかだぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 一番右上の 1 を赤枠にすれば 正方形の成功が 1 増えるんじゃないの?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 細かいところを 稼ぎに行くな☆ プロか……☆」</p> <pre><code>[ 1] 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 [ 1] [624] 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] 624 [249] 376 1 624 625 624 1 376 249 0 249 376 1 624 [625] [624] [ 1] [376] 249 [376] 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] 376 [625] 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] 625 [376] 624 624 376 0 376 624 624 376 0 376 624 [624] [376] 0 376 624 624 376 [249] 376 1 624 625 624 1 376 249 0 249 376 [ 1] [624] 625 624 1 376 249 [624] 376 376 624 0 624 376 376 624 0 624 [376] 376 624 0 624 376 376 624 [ 1] 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 [ 0] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 [ 1] 624 249 376 625 376 249 624 [ 1] 0 1 624 249 376 625 376 249 624 1 [624] 376 376 624 [ 0] [624] [376] [376] 624 0 624 376 376 624 0 624 376 376 624 [249] 376 1 624 [625] [624] [ 1] [376] 249 0 249 376 1 624 625 624 1 376 249 [376] 624 624 376 [ 0] [376] [624] [624] 376 0 376 624 624 376 0 376 624 624 376 [625] 0 625 0 [625] [ 0] [625] [ 0] 625 0 625 0 625 0 625 0 625 0 625 [376] 624 [624] [376] 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [249] 376 [ 1] [624] 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 [624] [376] 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 [624] [249] [376] [625] [376] [249] [624] [ 1] [ 0] [ 1] [624] [249] [376] [625] [376] [249] [624] [ 1] </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 一番右上というのは 観測者により不定だから、九九の右上 と考えるのが自然だろう☆」</p> <pre><code># 正方形縛り Info : Succeed 42 Info : Failed 0 Info : Rate 1.0000 # 長方形 Info : Succeed 854 Info : Failed 180 Info : Rate 0.8259 </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 減った……☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 被りが減ったんじゃないの?」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 長方形の フェイルドが増えるから 止めてくれだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 長方形の フェイルドを ざっと眺めてみたが、長方形、無理だろ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 正方形の サクシードを増やす方も 当たってみるかだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 おなじ種類のサクシードばかり増えても意味ないのよ?<br /> 網羅律は 表示できないの? カバレッジ!」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 次はカバレッジの実装だな☆ 寝よ☆」</p> <h2 id="じめじめ次の日"><a href="#%E3%81%98%E3%82%81%E3%81%98%E3%82%81%E6%AC%A1%E3%81%AE%E6%97%A5">じめじめ次の日</a></h2> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 パワフルシックス数は 6つ☆ 左上、右下、左下、右上 で1かたまりとし、<br /> 組み合わせではなく 順列で 網羅しようぜ☆ 6×6×6×6 は……、2096かだぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 1296では☆?」</p> <pre><code>pow6 = [0, 1, 249, 376, 624, 625] cover_dict = {} for tl in range(0, 6): for br in range(0, 6): for bl in range(0, 6): for tr in range(0, 6): key = ((pow6[tl]*1000 + pow6[br]) * 1000 + pow6[bl])*1000 + pow6[tr] value = 0 cover_dict[key] = value print("Size : {}".format(len(cover_dict))) print("Info : Finished.") </code></pre> <pre><code>Size : 1296 </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 こんな感じで 網羅 を調べるための表に なってるのかだぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 成功の数と 失敗の数を 覚えさせておきたくない?」</p> <pre><code>pow6 = [0, 1, 249, 376, 624, 625] cover_dict = {} for tl in range(0, 6): for br in range(0, 6): for bl in range(0, 6): for tr in range(0, 6): key = ((pow6[tl]*1000 + pow6[br]) * 1000 + pow6[bl])*1000 + pow6[tr] value = {"suceed": 0, "failed": 0} cover_dict[key] = value print("Size : {}".format(len(cover_dict))) print("Info : Finished.") </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 2つの数を覚えておくことは、多分できるんだろ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 表示はできるのかだぜ☆?」</p> <pre><code>for key, value in cover_dict.items(): print("{}: {}".format(key, value)) </code></pre> <pre><code># 前略 625625624624: {'suceed': 0, 'failed': 0} 625625624625: {'suceed': 0, 'failed': 0} 625625625000: {'suceed': 0, 'failed': 0} 625625625001: {'suceed': 0, 'failed': 0} 625625625249: {'suceed': 0, 'failed': 0} 625625625376: {'suceed': 0, 'failed': 0} 625625625624: {'suceed': 0, 'failed': 0} 625625625625: {'suceed': 0, 'failed': 0} </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 これで できるんじゃないか☆?」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 カバー率を調べたいから、サクシードだけしている項目の数、フェイルドだけしている項目の数、<br /> 両方している項目の数、どちらもしていない項目の数 は出せる?」</p> <pre><code>sum_succeed = 0 sum_failed = 0 sum_both = 0 sum_none = 0 for key, value in cover_dict.items(): if 0 < value["succeed"] and 0 < value["failed"]: sum_both += 1 elif 0 < value["succeed"]: sum_succeed += 1 elif 0 < value["failed"]: sum_succeed += 1 else: sum_none += 1 print("{}: {}".format(key, value)) print("Succeed : {}".format(sum_succeed)) print("Failed : {}".format(sum_failed)) print("Both : {}".format(sum_both)) print("None : {}".format(sum_none)) </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 これで どうだぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 succeed と failed にランダムに0か1を放り込んでみろだぜ☆」</p> <pre><code>import random pow6 = [0, 1, 249, 376, 624, 625] cover_dict = {} for tl in range(0, 6): for br in range(0, 6): for bl in range(0, 6): for tr in range(0, 6): key = ((pow6[tl]*1000 + pow6[br]) * 1000 + pow6[bl])*1000 + pow6[tr] value = {"succeed": random.randint( 0, 1), "failed": random.randint(0, 1)} cover_dict[key] = value print("Size : {}".format(len(cover_dict))) </code></pre> <pre><code># 前略 625625376624: {'succeed': 0, 'failed': 1} 625625376625: {'succeed': 1, 'failed': 1} 625625624000: {'succeed': 1, 'failed': 0} 625625624001: {'succeed': 1, 'failed': 0} 625625624249: {'succeed': 0, 'failed': 0} 625625624376: {'succeed': 1, 'failed': 0} 625625624624: {'succeed': 0, 'failed': 0} 625625624625: {'succeed': 1, 'failed': 0} 625625625000: {'succeed': 0, 'failed': 0} 625625625001: {'succeed': 1, 'failed': 1} 625625625249: {'succeed': 1, 'failed': 0} 625625625376: {'succeed': 1, 'failed': 0} 625625625624: {'succeed': 1, 'failed': 0} 625625625625: {'succeed': 0, 'failed': 1} Succeed : 670 Failed : 0 Both : 285 None : 341 </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 こんなんで いいのかだぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 おうおう☆! failed の総和が間違っているぜ☆!」</p> <pre><code>sum_succeed = 0 sum_failed = 0 sum_both = 0 sum_none = 0 for key, value in cover_dict.items(): if 0 < value["succeed"] and 0 < value["failed"]: sum_both += 1 elif 0 < value["succeed"]: sum_succeed += 1 elif 0 < value["failed"]: sum_failed += 1 else: sum_none += 1 print("{}: {}".format(key, value)) print("Succeed : {}".format(sum_succeed)) print("Failed : {}".format(sum_failed)) print("Both : {}".format(sum_both)) print("None : {}".format(sum_none)) </code></pre> <pre><code># 前略 625625376624: {'succeed': 0, 'failed': 1} 625625376625: {'succeed': 0, 'failed': 1} 625625624000: {'succeed': 0, 'failed': 0} 625625624001: {'succeed': 0, 'failed': 1} 625625624249: {'succeed': 1, 'failed': 1} 625625624376: {'succeed': 1, 'failed': 1} 625625624624: {'succeed': 0, 'failed': 1} 625625624625: {'succeed': 0, 'failed': 0} 625625625000: {'succeed': 0, 'failed': 1} 625625625001: {'succeed': 0, 'failed': 1} 625625625249: {'succeed': 0, 'failed': 1} 625625625376: {'succeed': 1, 'failed': 1} 625625625624: {'succeed': 1, 'failed': 1} 625625625625: {'succeed': 0, 'failed': 0} Succeed : 349 Failed : 321 Both : 289 None : 337 </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 コピペ・ミスを修正☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 使ってみようぜ☆?」</p> <pre><code>def append_cover(tl, br, bl, tr, succeed, failed): key = ((tl*1000 + br) * 1000 + bl)*1000 + tr value = {"succeed": cover_dict[key]["succeed"] + succeed, "failed": cover_dict[key]["failed"] + failed} cover_dict[key] = value </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 こういう関数があったら便利だろうか☆?」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 作った関数のテストをしてみましょう」</p> <p>./lib/powerful_six_coverage.py</p> <pre><code>def append_cover(tl, br, bl, tr, succeed, failed): key = ((tl*1000 + br) * 1000 + bl)*1000 + tr if key not in cover_dict: cover_dict[key] = {"succeed": 0, "failed": 0} value = {"succeed": cover_dict[key]["succeed"] + succeed, "failed": cover_dict[key]["failed"] + failed} cover_dict[key] = value def init_cover_dict(): import random for tl in range(0, 6): for br in range(0, 6): for bl in range(0, 6): for tr in range(0, 6): key = ((pow6[tl]*1000 + pow6[br]) * 1000 + pow6[bl])*1000 + pow6[tr] value = {"succeed": 0, "failed": 0} cover_dict[key] = value print("Size : {}".format(len(cover_dict))) init_cover_dict() def show_cover_dict(): sum_succeed = 0 sum_failed = 0 sum_both = 0 sum_none = 0 for key, value in cover_dict.items(): if 0 < value["succeed"] and 0 < value["failed"]: sum_both += 1 elif 0 < value["succeed"]: sum_succeed += 1 elif 0 < value["failed"]: sum_failed += 1 else: sum_none += 1 print("{}: {}".format(key, value)) print("Succeed : {}".format(sum_succeed)) print("Failed : {}".format(sum_failed)) print("Both : {}".format(sum_both)) print("None : {}".format(sum_none)) print("Total : {}".format(sum_succeed+sum_failed+sum_both+sum_none)) show_cover_dict() print("Info : Finished.") </code></pre> <pre><code># 前略 625625376624: {'succeed': 0, 'failed': 1} 625625376625: {'succeed': 0, 'failed': 0} 625625624000: {'succeed': 1, 'failed': 1} 625625624001: {'succeed': 0, 'failed': 1} 625625624249: {'succeed': 0, 'failed': 1} 625625624376: {'succeed': 0, 'failed': 0} 625625624624: {'succeed': 0, 'failed': 0} 625625624625: {'succeed': 0, 'failed': 1} 625625625000: {'succeed': 0, 'failed': 0} 625625625001: {'succeed': 0, 'failed': 0} 625625625249: {'succeed': 1, 'failed': 1} 625625625376: {'succeed': 1, 'failed': 1} 625625625624: {'succeed': 0, 'failed': 1} 625625625625: {'succeed': 1, 'failed': 0} Succeed : 308 Failed : 348 Both : 313 None : 327 Total : 1296 Info : Finished. </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 作り直しで☆」</p> <pre><code>from lib.powerful_six_coverage import init_cover_dict from lib.powerful_six_coverage import append_cover from lib.powerful_six_coverage import show_cover_dict </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 Python3 の import は、こんな書き方でいいんだろうか☆?」</p> <pre><code> 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] 624 249 376 1 624 625 624 1 376 249 0 249 376 1 624 [625] [624] [ 1] [376] 249 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] 376 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] 625 376 624 624 376 0 376 624 624 376 0 376 624 [624] [376] 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 [ 1] [624] 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 [376] 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] 624 0 624 376 376 624 0 624 376 376 624 249 376 1 624 [625] [624] [ 1] [376] 249 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] 376 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] 625 0 625 0 625 0 625 0 625 0 625 376 624 [624] [376] 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 [ 1] [624] 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 [376] 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 # 正方形縛り Succeed : 21 Failed : 0 Both : 0 None : 1275 Total : 1296 Rate : 0.0162 # 長方形 Succeed : 55 Failed : 10 Both : 0 None : 1231 Total : 1296 Rate : 0.0424 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 正方形縛りの サクシードが 70 から 21 に減ってるじゃないか☆?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 49個も 重複があったんじゃないか☆? 21種類だったんだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d25d2a203e66.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 長方形も 減ってるじゃないか☆?」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d25d38aa7c7e.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 フェイルドが 0種類 とか 10種類 なのは おかしくない?<br /> ナン にカウントされてるんじゃないの?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d25d1de8eef6.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 長くなったんで 次の記事で☆」</p> むずでょ tag:crieit.net,2005:PublicArticle/15213 2019-07-07T23:03:19+09:00 2019-07-10T20:52:06+09:00 https://crieit.net/posts/ad452aaf461dd1abaf6d71a75c295527 九九を50乗しようぜ☆(^~^)<その2> <p><前回からの続き></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 うーむ☆ うまくいかん☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 前回の説明をする☆ 九九を50乗すると末尾3桁に出てくる次の6つの数に<br /> パワフルシックス と名付けたのだった☆」</p> <p><a href="https://crieit.now.sh/upload_images/6f562b809c3a9e587f33f70579733d975d21fb22e9652.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/6f562b809c3a9e587f33f70579733d975d21fb22e9652.png?mw=700" alt="20190707math26a2.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 パワフルシックス の空間は 末尾3桁 なのだった☆ つまり Mod 1000 が利いた空間☆<br /> 何が嬉しいかというと、奇数乗 すると 元に戻ることだぜ☆<br /> 例を示そう☆」</p> <p><a href="https://crieit.now.sh/upload_images/b2c0739175ceea08eb240b45feb4ccfa5d21fceecf6e5.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/b2c0739175ceea08eb240b45feb4ccfa5d21fceecf6e5.png?mw=700" alt="20190707math26a3.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 といっても☆、」</p> <p><a href="https://crieit.now.sh/upload_images/c154c99b137691312edfff8f69f7b0cb5d21fec2e18a9.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/c154c99b137691312edfff8f69f7b0cb5d21fec2e18a9.png?mw=700" alt="20190707math26a4.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 4つの数は 偶数乗しても 元に戻るんだけどな☆<br /> 249^2 mod 1000 は 1、<br /> 624^2 mod 1000 は 376 なので、<br /> パワフルシックスを 累乗 mod 1000 すれば 4つの数のどれかに落ち着く☆」</p> <p><a href="https://crieit.now.sh/upload_images/b907597d055928971041dbeafbaaa1405d23238009546.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/b907597d055928971041dbeafbaaa1405d23238009546.png?mw=700" alt="20190707math27a1b1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 足しても 掛けても 面白いのだった☆<br /> 前回やったのは 掛け算 の図解で、<br /> 1×1×376 = 376、<br /> 1×1×624 = 624、<br /> 1×1×625 = 625<br /> の3つの説明が できていないところだった☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 1 は 掛け算の最後に持っていくと うまくいくことに 気づいているんだが、<br /> その説明は また今度だぜ☆ もう寝る☆」</p> <h2 id="つーぎーつぎ次の日"><a href="#%E3%81%A4%E3%83%BC%E3%81%8E%E3%83%BC%E3%81%A4%E3%81%8E%E6%AC%A1%E3%81%AE%E6%97%A5">つーぎーつぎ次の日</a></h2> <p><a href="https://crieit.now.sh/upload_images/d56137c766ce069906084fbab544337a5d231e2a7da8d.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/d56137c766ce069906084fbab544337a5d231e2a7da8d.png?mw=700" alt="20190707math19a1b0.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 反例を消せていないので作りかけだが 1×1×376 などの計算ルールの案を教えよう☆」</p> <p><a href="https://crieit.now.sh/upload_images/d2e0dc35f3b3fb24141cccbfc99929b35d231fcde273c.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/d2e0dc35f3b3fb24141cccbfc99929b35d231fcde273c.png?mw=700" alt="20190708math28a1b1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 001、001、376を 角に持つ 直角四辺形を作れだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/d2e0dc35f3b3fb24141cccbfc99929b35d2322c6d79ac.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/d2e0dc35f3b3fb24141cccbfc99929b35d2322c6d79ac.png?mw=700" alt="20190708math28a1b1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 右上が答えになるのだった☆<br /> このとき、 <strong>追加ルール3</strong> だぜ☆ 1の2乗は 対角線に置かなくていい☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d23204d832f9.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d23204d832f9.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 1 だけ 特別扱いしていいの?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 図上に作れない長方形の場合、ルールを緩くしてく、という ルール があるのかも知れないな☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 これで すべてのルールを説明した☆ あとは 反例を消していこうぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 625×625×625 = 625 は 図上で作れないぜ☆<br /> わたしは 図の外に 625 があることに 納得していない☆」</p> <p><a href="https://crieit.now.sh/upload_images/234c5f4926f37b7f897ed1d58f1215d55d2330bcdab52.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/234c5f4926f37b7f897ed1d58f1215d55d2330bcdab52.png?mw=700" alt="20190708math29a1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 図の外に 625 があったならば、625×625×625=625 になるところと、<br /> 625×625×625=249 になるところ、<br /> 625×625×625=  1 になるところ が出てくるぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/53bcff329e5b9543d5dc7027602992995d233833090bb.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/53bcff329e5b9543d5dc7027602992995d233833090bb.png?mw=700" alt="20190708math29a2.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 正方形に延長するのではなく、長方形に延長するのならいけるかも知らん☆」</p> <p><a href="https://crieit.now.sh/upload_images/329d72f1bfec246c84361ecfd81805aa5d2339136d7cb.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/329d72f1bfec246c84361ecfd81805aa5d2339136d7cb.png?mw=700" alt="20190708math29a3.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 うーん☆? 反例が出てくるのは 右上の区画なのでは☆<br /> 右上の区画の底辺の 625、000、625、000 のラインから 625 を選ばれると<br /> 249 や 001 が出てきてダメになる☆ 選ばせないようにしないと☆」</p> <p><a href="https://crieit.now.sh/upload_images/f5bc04f0c40f80aefd66b3fc820673bf5d233b3d49b18.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/f5bc04f0c40f80aefd66b3fc820673bf5d233b3d49b18.png?mw=700" alt="20190708math29a4b1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 625 は 左上隅、右上隅にもあるんだぜ☆<br /> 一番外の 直角四辺形の右上は 001☆ 反例☆」</p> <p><a href="https://crieit.now.sh/upload_images/63a7fde124e42ae7aec35888bba17ab95d233cf7d4c8e.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/63a7fde124e42ae7aec35888bba17ab95d233cf7d4c8e.png?mw=700" alt="20190708math29a5.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 うーむ☆ これでいいが 変だぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 なるほど長方形にしておけば 625 を3つ選んだ時に 4つ目の角は 625 になる☆<br /> しかし 長方形にしておく理由が分からん☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 ご主人さま☆ 好きなパワフルシックス数を 3つ言ってくれだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/f3d160aa0daafff1214c9ac2b3b8cdde5d233d9d6089f.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/f3d160aa0daafff1214c9ac2b3b8cdde5d233d9d6089f.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_03_Zzz.gif" /></a><br /> 「 うーん、249、1、624」</p> <p><a href="https://crieit.now.sh/upload_images/5a58175dff7499c1c8affca60f8fc6775d233e1222d59.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5a58175dff7499c1c8affca60f8fc6775d233e1222d59.png?mw=700" alt="20190708math30a1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 3つ掛けた Mod 1000 は 多分 376☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 合ってるぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 うーむむむ☆ 合ってるところはあっても、反例が消えないぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 単に 右上の区画は選べない、というルールにしたら どうだぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 それは いけてそう……☆」</p> <p><a href="https://crieit.now.sh/upload_images/409c86b59606d02d92281273423352dc5d234042daa4a.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/409c86b59606d02d92281273423352dc5d234042daa4a.png?mw=700" alt="20190708math31a1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 赤枠で囲ったところと、000 からは選べない☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 右上の足は 赤枠に入れるという条件を付けろだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/90e9063fbbf46668c0bd641286c298a95d23422f2f852.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/90e9063fbbf46668c0bd641286c298a95d23422f2f852.png?mw=700" alt="20190708math31a1b1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 376×249×624 のときに、001 のケースと 376 のケースがあるわよ?」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 一番小さな数を 左下にするルールでも あるのかだぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 そんなルールがあるなら 一意に決めるところまで もっていけるかもしれないし、<br /> より便利になりそう……☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 反例が出せなくなるまで 詰めよう☆<br /> できたら NMT に投げれば 喜んで焼き肉が出てくるだろう☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 どうやって 反例が出ないか 分かるんだぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 はい反例! やっぱり 赤い枠の外に 625 を3つ、<br /> 赤い枠の中に 625 を1つ、という直角四辺形は作れないわよ?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 焼き肉が遠のく……☆」</p> <p><a href="https://crieit.now.sh/upload_images/bcc424963a8fd4a1b49ecbfc7d8b26ef5d234dab54ba0.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/bcc424963a8fd4a1b49ecbfc7d8b26ef5d234dab54ba0.png?mw=700" alt="20190708math32a1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 なぜなら 左下の区画に 625 が無いからよ」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 上なり 右なり 1つずらせば 625 はあるんだが……☆<br /> 非対称性が 気になるよな☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 青い枠を縦に伸ばすと 赤い枠は縦に縮まる☆ 無理☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 赤枠の境界の底辺は 踏んでいいということにしたら どうだぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 数学的に意味があるのか分からん……☆」</p> <p><a href="https://crieit.now.sh/upload_images/0e24cf0761c4a6efe3f4223b5994739c5d2352b7b47bf.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/0e24cf0761c4a6efe3f4223b5994739c5d2352b7b47bf.png?mw=700" alt="20190708math33a1b1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 対角線上の 右上の区画は踏めない、ということにしたらどうだぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 応用が利きそうなルールだよな☆ しかも 対称的だし、すっきりしている☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 今日はもう寝よ☆」</p> <h2 id="つぎぎぎぎ! 次の日"><a href="#%E3%81%A4%E3%81%8E%E3%81%8E%E3%81%8E%E3%81%8E%EF%BC%81%E3%80%80%E6%AC%A1%E3%81%AE%E6%97%A5">つぎぎぎぎ! 次の日</a></h2> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 Python3 で 四角形掛け算 の理論が成り立つか 総当たりで調べようぜ☆」</p> <pre><code>for i in range(1, 21): for j in range(1, 21): for k in range(1, 21): for l in range(1, 21): print("0 ", end="") print("") print("") print("") print("Info : Finished.") </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 16万個の 0 が表示されたんだが☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 直角四辺形になるのだから、もっと少なくて済むんじゃないのか☆?」</p> <pre><code>count = 0 end = 21 for x in range(1, end): for y in range(1, end): for x2 in range(x+1, end): for y2 in range(y+1, end): count += 1 print("{:>5} ".format(count), end="") print("") print("") print("") print("Info : Finished.") </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 3万6100個の 0 が表示されたんだが☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 四辺形になってないのも数えてるだろ☆」</p> <pre><code>count = 0 end = 21 for y in range(1, end-1): for x in range(1, end-1): for y2 in range(y+1, end): for x2 in range(x+1, end): count += 1 print("{:>5} ".format(count), end="") print("") print("") print("") print("Info : Finished.") </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 こう書いても 3万6100個の 0 が表示されたから 四角形にはなってるんじゃないか☆?」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 右上の角は 赤い枠の中に収めましょう」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 枠の中判定が めんどうくさいんで 関数を書こう……☆」</p> <pre><code>def is_red_zone(x, y): """ 九九エリアの右上の区画。 """ x2 = x % 10 y2 = y % 10 if(5 <= x2 and x2 <= 9): if(1 <= y2 and y2 <= 5): return True return False </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 こんなんで いいんだろうか……☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 テストを書きましょう。<br /> 納期に迫られたシステムエンジニアが床に崩れ落ちようとも、<br /> 霧の中から神を名乗るヒゲ面のおじいさんが現れて東の山を指差しても、まずはテストを書くのよ」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 こんなんで いいのかだぜ☆?」</p> <pre><code>count = 0 end = 21 for y in range(1, end-1): for x in range(1, end-1): count += 1 if is_red_zone(x, y): print("[{:>5}] ".format(count), end="") else: print(" {:>5} ".format(count), end="") print("") print("Info : Finished.") </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 実行してみようぜ☆?」</p> <pre><code> 1 2 3 4 [ 5] [ 6] [ 7] [ 8] [ 9] 10 11 12 13 14 [ 15] [ 16] [ 17] [ 18] [ 19] 20 21 22 23 [ 24] [ 25] [ 26] [ 27] [ 28] 29 30 31 32 33 [ 34] [ 35] [ 36] [ 37] [ 38] 39 40 41 42 [ 43] [ 44] [ 45] [ 46] [ 47] 48 49 50 51 52 [ 53] [ 54] [ 55] [ 56] [ 57] 58 59 60 61 [ 62] [ 63] [ 64] [ 65] [ 66] 67 68 69 70 71 [ 72] [ 73] [ 74] [ 75] [ 76] 77 78 79 80 [ 81] [ 82] [ 83] [ 84] [ 85] 86 87 88 89 90 [ 91] [ 92] [ 93] [ 94] [ 95] 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 [ 195] [ 196] [ 197] [ 198] [ 199] 200 201 202 203 204 [ 205] [ 206] [ 207] [ 208] [ 209] 210 211 212 213 [ 214] [ 215] [ 216] [ 217] [ 218] 219 220 221 222 223 [ 224] [ 225] [ 226] [ 227] [ 228] 229 230 231 232 [ 233] [ 234] [ 235] [ 236] [ 237] 238 239 240 241 242 [ 243] [ 244] [ 245] [ 246] [ 247] 248 249 250 251 [ 252] [ 253] [ 254] [ 255] [ 256] 257 258 259 260 261 [ 262] [ 263] [ 264] [ 265] [ 266] 267 268 269 270 [ 271] [ 272] [ 273] [ 274] [ 275] 276 277 278 279 280 [ 281] [ 282] [ 283] [ 284] [ 285] 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 多分 そこらへんだな☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 赤い枠は 対角線上だけにできる?」</p> <pre><code>def is_red_zone(x, y): """ 対角線上に現れる、九九エリアの右上の区画。 """ # 1辺10を1区画と考えたときの、対角線上にある区画。 x3 = x // 10 y3 = y // 10 if(x3 == y3): # 九九エリアの右上の区画。 x2 = x % 10 y2 = y % 10 if(5 <= x2 and x2 <= 9): if(1 <= y2 and y2 <= 5): return True return False </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 10で割ることで、10倍縮小ズームしたような効果を出して、ナナメを取ればいいんじゃないか☆<br /> こんなんで いいのかだぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 実行してみようぜ☆?」</p> <pre><code> 1 2 3 4 [ 5] [ 6] [ 7] [ 8] [ 9] 10 11 12 13 14 15 16 17 18 19 20 21 22 23 [ 24] [ 25] [ 26] [ 27] [ 28] 29 30 31 32 33 34 35 36 37 38 39 40 41 42 [ 43] [ 44] [ 45] [ 46] [ 47] 48 49 50 51 52 53 54 55 56 57 58 59 60 61 [ 62] [ 63] [ 64] [ 65] [ 66] 67 68 69 70 71 72 73 74 75 76 77 78 79 80 [ 81] [ 82] [ 83] [ 84] [ 85] 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 [ 205] [ 206] [ 207] [ 208] [ 209] 210 211 212 213 214 215 216 217 218 219 220 221 222 223 [ 224] [ 225] [ 226] [ 227] [ 228] 229 230 231 232 233 234 235 236 237 238 239 240 241 242 [ 243] [ 244] [ 245] [ 246] [ 247] 248 249 250 251 252 253 254 255 256 257 258 259 260 261 [ 262] [ 263] [ 264] [ 265] [ 266] 267 268 269 270 271 272 273 274 275 276 277 278 279 280 [ 281] [ 282] [ 283] [ 284] [ 285] 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 上下反転するのは めんどくさいんで☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 しかし それでは 検証しにくいぜ☆」</p> <pre><code>end = 21 for y in reversed(range(1, end-1)): for x in range(1, end-1): address = (y-1)*(end-1)+x if is_red_zone(x, y): print("[{:>5}] ".format(address), end="") else: print(" {:>5} ".format(address), end="") print("") print("Info : Finished.") </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 じゃあ yをひっくり返そうぜ☆」</p> <pre><code> 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 281 282 283 284 285 286 287 288 289 290 291 292 293 294 [ 295] [ 296] [ 297] [ 298] [ 299] 261 262 263 264 265 266 267 268 269 270 271 272 273 274 [ 275] [ 276] [ 277] [ 278] [ 279] 241 242 243 244 245 246 247 248 249 250 251 252 253 254 [ 255] [ 256] [ 257] [ 258] [ 259] 221 222 223 224 225 226 227 228 229 230 231 232 233 234 [ 235] [ 236] [ 237] [ 238] [ 239] 201 202 203 204 205 206 207 208 209 210 211 212 213 214 [ 215] [ 216] [ 217] [ 218] [ 219] 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 81 82 83 84 [ 85] [ 86] [ 87] [ 88] [ 89] 90 91 92 93 94 95 96 97 98 99 61 62 63 64 [ 65] [ 66] [ 67] [ 68] [ 69] 70 71 72 73 74 75 76 77 78 79 41 42 43 44 [ 45] [ 46] [ 47] [ 48] [ 49] 50 51 52 53 54 55 56 57 58 59 21 22 23 24 [ 25] [ 26] [ 27] [ 28] [ 29] 30 31 32 33 34 35 36 37 38 39 1 2 3 4 [ 5] [ 6] [ 7] [ 8] [ 9] 10 11 12 13 14 15 16 17 18 19 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 赤枠が 下に4つ ずれてるぜ☆ 4つ 上げてくれだぜ☆」</p> <pre><code>def is_red_zone(x, y): """ 対角線上に現れる、九九エリアの右上の区画。 """ # 1辺10を1区画と考えたときの、対角線上にある区画。 x3 = x // 10 y3 = y // 10 if(x3 == y3): # 九九エリアの右上の区画。 x2 = x % 10 y2 = y % 10 if(5 <= x2 and x2 <= 9): if(5 <= y2 and y2 <= 9): return True return False </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 4つ上げるだけでいいのかだぜ☆ if文の中のマジックナンバーを 4 増やすぜ☆」</p> <pre><code> 361 362 363 364 365 366 367 368 369 370 371 372 373 374 [ 375] [ 376] [ 377] [ 378] [ 379] 341 342 343 344 345 346 347 348 349 350 351 352 353 354 [ 355] [ 356] [ 357] [ 358] [ 359] 321 322 323 324 325 326 327 328 329 330 331 332 333 334 [ 335] [ 336] [ 337] [ 338] [ 339] 301 302 303 304 305 306 307 308 309 310 311 312 313 314 [ 315] [ 316] [ 317] [ 318] [ 319] 281 282 283 284 285 286 287 288 289 290 291 292 293 294 [ 295] [ 296] [ 297] [ 298] [ 299] 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 161 162 163 164 [ 165] [ 166] [ 167] [ 168] [ 169] 170 171 172 173 174 175 176 177 178 179 141 142 143 144 [ 145] [ 146] [ 147] [ 148] [ 149] 150 151 152 153 154 155 156 157 158 159 121 122 123 124 [ 125] [ 126] [ 127] [ 128] [ 129] 130 131 132 133 134 135 136 137 138 139 101 102 103 104 [ 105] [ 106] [ 107] [ 108] [ 109] 110 111 112 113 114 115 116 117 118 119 81 82 83 84 [ 85] [ 86] [ 87] [ 88] [ 89] 90 91 92 93 94 95 96 97 98 99 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 フーム☆<br /> いいんじゃないか☆」</p> <pre><code>count = 0 end = 21 for y in reversed(range(1, end-1)): for x in range(1, end-1): for y2 in range(y+1, end): for x2 in range(x+1, end): # 右上角はレッドゾーンの中にあること。 if is_red_zone(x2, y): count += 1 print("{:>5} ".format(count), end="") print("") print("Info : Finished.") </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 じゃあ 作った関数で 総当たりをしよう☆<br /> 3150個の数字が表示されたぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 31600の 16分の2 は 3950 だが、それより少ないな☆<br /> 合ってるのかだぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 赤枠は 4分の1 より少し大きいからな☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 左上、左下、右下の角は 赤い枠 を踏んじゃだめなのよ。 できる?」</p> <pre><code>count = 0 end = 21 for y in reversed(range(1, end-1)): for x in range(1, end-1): for y2 in range(y+1, end): for x2 in range(x+1, end): # 右上角はレッドゾーンの中にあること。 # 左上角、左下角、右下角はレッドゾーンの外にあること。 if is_red_zone(x2, y) and not is_red_zone(x, y) and not is_red_zone(x, y2) and not is_red_zone(x2, y2): count += 1 print("{:>5} ".format(count), end="") print("") print("Info : Finished.") </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 処理時間を気にしなくていいなら 4つの角がそれぞれ 赤い枠の中にあるか、ないか 判定するだけだぜ☆<br /> 1450個の数字が表示されたぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 左上、左下、右下の角は 0 も踏んじゃだめなのよ。 できる?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 パワフルシックスのテーブルを 事前に作っておきたいよな☆<br /> 繰り返しパターンなのは 決まっているし……☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 Python3 で二次元配列って どうやって作るんだぜ☆?」</p> <pre><code># 19x19。 table = [] for y in range(1, 20): line = [] for x in range(1, 20): num = (x*y) ** 50 % 1000 line.append(num) table.append(line) print("table = {}".format(table)) </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 こんなんで いいのかだぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 実行してみようぜ☆?」</p> <pre><code>table = [ [1, 624, 249, 376, 625, 376, 249, 624, 1, 0, 1, 624, 249, 376, 625, 376, 249, 624, 1], [624, 376, 376, 624, 0, 624, 376, 376, 624, 0, 624, 376, 376, 624, 0, 624, 376, 376, 624], [249, 376, 1, 624, 625, 624, 1, 376, 249, 0, 249, 376, 1, 624, 625, 624, 1, 376, 249], [376, 624, 624, 376, 0, 376, 624, 624, 376, 0, 376, 624, 624, 376, 0, 376, 624, 624, 376], [625, 0, 625, 0, 625, 0, 625, 0, 625, 0, 625, 0, 625, 0, 625, 0, 625, 0, 625], [376, 624, 624, 376, 0, 376, 624, 624, 376, 0, 376, 624, 624, 376, 0, 376, 624, 624, 376], [249, 376, 1, 624, 625, 624, 1, 376, 249, 0, 249, 376, 1, 624, 625, 624, 1, 376, 249], [624, 376, 376, 624, 0, 624, 376, 376, 624, 0, 624, 376, 376, 624, 0, 624, 376, 376, 624], [1, 624, 249, 376, 625, 376, 249, 624, 1, 0, 1, 624, 249, 376, 625, 376, 249, 624, 1], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [1, 624, 249, 376, 625, 376, 249, 624, 1, 0, 1, 624, 249, 376, 625, 376, 249, 624, 1], [624, 376, 376, 624, 0, 624, 376, 376, 624, 0, 624, 376, 376, 624, 0, 624, 376, 376, 624], [249, 376, 1, 624, 625, 624, 1, 376, 249, 0, 249, 376, 1, 624, 625, 624, 1, 376, 249], [376, 624, 624, 376, 0, 376, 624, 624, 376, 0, 376, 624, 624, 376, 0, 376, 624, 624, 376], [625, 0, 625, 0, 625, 0, 625, 0, 625, 0, 625, 0, 625, 0, 625, 0, 625, 0, 625], [376, 624, 624, 376, 0, 376, 624, 624, 376, 0, 376, 624, 624, 376, 0, 376, 624, 624, 376], [249, 376, 1, 624, 625, 624, 1, 376, 249, 0, 249, 376, 1, 624, 625, 624, 1, 376, 249], [624, 376, 376, 624, 0, 624, 376, 376, 624, 0, 624, 376, 376, 624, 0, 624, 376, 376, 624], [1, 624, 249, 376, 625, 376, 249, 624, 1, 0, 1, 624, 249, 376, 625, 376, 249, 624, 1] ] </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 手で整形した☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 これを そのまま さっきのプログラムで利用してみましょう」</p> <pre><code>end = 21 for y in reversed(range(1, end-1)): for x in range(1, end-1): cell = table[y-1][x-1] if is_red_zone(x, y): print("[{:>3}] ".format(cell), end="") else: print(" {:>3} ".format(cell), end="") print("") print("Info : Finished.") </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 こうかだぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 実行してみようぜ☆?」</p> <pre><code> 1 624 249 376 625 376 249 624 1 0 1 624 249 376 [625] [376] [249] [624] [ 1] 624 376 376 624 0 624 376 376 624 0 624 376 376 624 [ 0] [624] [376] [376] [624] 249 376 1 624 625 624 1 376 249 0 249 376 1 624 [625] [624] [ 1] [376] [249] 376 624 624 376 0 376 624 624 376 0 376 624 624 376 [ 0] [376] [624] [624] [376] 625 0 625 0 625 0 625 0 625 0 625 0 625 0 [625] [ 0] [625] [ 0] [625] 376 624 624 376 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 624 249 376 [625] [376] [249] [624] [ 1] 0 1 624 249 376 625 376 249 624 1 624 376 376 624 [ 0] [624] [376] [376] [624] 0 624 376 376 624 0 624 376 376 624 249 376 1 624 [625] [624] [ 1] [376] [249] 0 249 376 1 624 625 624 1 376 249 376 624 624 376 [ 0] [376] [624] [624] [376] 0 376 624 624 376 0 376 624 624 376 625 0 625 0 [625] [ 0] [625] [ 0] [625] 0 625 0 625 0 625 0 625 0 625 376 624 624 376 0 376 624 624 376 0 376 624 624 376 0 376 624 624 376 249 376 1 624 625 624 1 376 249 0 249 376 1 624 625 624 1 376 249 624 376 376 624 0 624 376 376 624 0 624 376 376 624 0 624 376 376 624 1 624 249 376 625 376 249 624 1 0 1 624 249 376 625 376 249 624 1 </code></pre> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 いーんじゃないの?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 これを使って1450回ぐらいループすれば 長方形掛け算 が成立するか くまなく調べられるな☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 やってみようぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 インスタント・コーヒーを飲んでからな☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> ( ずずずっ……☆)</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 のんびりしてんなあ☆!」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> ( ずずずっ……☆)</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> ( いらいらっ☆!)</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 Python3 の配列の添え字は 0 オリジンかだぜ☆? 直そ☆」</p> <pre><code>def is_red_zone(x, y): """ 対角線上に現れる、九九エリアの右上の区画。 """ # 1辺10を1区画と考えたときの、対角線上にある区画。 x3 = x // 10 y3 = y // 10 if(x3 == y3): # 九九エリアの右上の区画。 x2 = x % 10 y2 = y % 10 if(4 <= x2 and x2 <= 8): if(4 <= y2 and y2 <= 8): return True return False for y in reversed(range(0, 19)): for x in range(0, 19): cell = table[y][x] if is_red_zone(x, y): print("[{:>3}] ".format(cell), end="") else: print(" {:>3} ".format(cell), end="") print("") end = 19 for y in reversed(range(0, end-1)): for x in range(0, end-1): for y2 in range(y+1, end): for x2 in range(x+1, end): # 左上角、右下角、左下角 はレッドゾーンの外にあること。 # 右上角はレッドゾーンの中にあること。 if not is_red_zone(x, y2) and not is_red_zone(x2, y) and not is_red_zone(x, y) and is_red_zone(x2, y2): tl = table[y2][x] br = table[y][x2] bl = table[y][x] tr = table[y2][x2] # 左上角、右下角、左下角 は 0 を踏んではいけない。 if tl != 0 and br != 0 and bl != 0: result = "" if tl*br*bl == tr: result = "o" else: result = "x" print("[{} {}:{}][{} {}:{}][{} {}:{}]=[{} {}:{}]{} ".format( x, y2, tl, x2, y, br, x, y, bl, x2, y2, tr, result), end="") print("") print("Info : Finished.") </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 はあ……、なるほど……☆」</p> <p><a href="https://crieit.now.sh/upload_images/d17074c6f4f4d583ae8f672d382f7ced5d24a02ca7890.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/d17074c6f4f4d583ae8f672d382f7ced5d24a02ca7890.png?mw=700" alt="20190709math34a1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 625×624×376 mod 1000 = 0 なので 右上625 は反例という指摘だぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 早くも終了か☆?」</p> <p><a href="https://crieit.now.sh/upload_images/021e8f3abd15abdcbaf85e77a1f0f37f5d24a3927e989.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/021e8f3abd15abdcbaf85e77a1f0f37f5d24a3927e989.png?mw=700" alt="20190709math35a1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 任意選択できる箇所があるのが原因だな☆<br /> これらは ルールで どちらか一方が自動的に選択されるように しておかなければいけないぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 じゃあ試しに 正方形で 縛ってみるかだぜ☆?」</p> <pre><code># 長方形 Info : Succeed 180 Info : Failed 2856 Info : Rate 0.0592 # 正方形縛り Info : Succeed 14 Info : Failed 170 Info : Rate 0.0760 </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 正方形では ぜんぜん 答えにならないのか、14通りで 多くを答えているのか☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 0 を踏まないから残り 5つの数があって、組み合わせは 5×4×3 の60通りあるんじゃないの?<br /> 14 じゃ全然足りなくない?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 あっ、間違えていた……☆ Mod 1000 するのを忘れていた……☆」</p> <pre><code>succeed = 0 failed = 0 end = 19 for y in reversed(range(0, end-1)): for x in range(0, end-1): for y2 in range(y+1, end): for x2 in range(x+1, end): # 左上角、右下角、左下角 はレッドゾーンの外にあること。 # 右上角はレッドゾーンの中にあること。 if not is_red_zone(x, y2) and not is_red_zone(x2, y) and not is_red_zone(x, y) and is_red_zone(x2, y2): tl = table[y2][x] br = table[y][x2] bl = table[y][x] tr = table[y2][x2] # 左上角、右下角、左下角 は 0 を踏んではいけない。 if tl != 0 and br != 0 and bl != 0: # 正方形であること。 if y2-y == x2-x: result = "" if tl*br*bl % 1000 == tr: result = "o" succeed += 1 else: result = "x" failed += 1 print("[{} {}:{}][{} {}:{}][{} {}:{}]=[{} {}:{}({})]{} ".format( x, y2, tl, x2, y, br, x, y, bl, x2, y2, tr, tl*br*bl % 1000, result), end="") print("") print("Info : Succeed {:>3}".format(succeed)) print("Info : Failed {:>3}".format(failed)) print("Info : Rate {:>.4f}".format(succeed/(succeed+failed))) print("Info : Finished.") </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 今までの結果は 忘れろだぜ☆」</p> <pre><code># 正方形縛り Info : Succeed 162 Info : Failed 22 Info : Rate 0.8804 # 長方形 Info : Succeed 2396 Info : Failed 640 Info : Rate 0.7892 </code></pre> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 正解率が8割超えてて わらう」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 もし正方形で すべてをカバーしているとしたら、正方形だけを調べるようにしたいぜ☆<br /> 162+22=184☆ 目視確認ができそうな現実的な数だぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 そういえば 追加ルール をまだ実装してなかったな……☆ 今日はもう寝る☆」</p> <h2 id="次の日の次の日はもしかして次の日"><a href="#%E6%AC%A1%E3%81%AE%E6%97%A5%E3%81%AE%E6%AC%A1%E3%81%AE%E6%97%A5%E3%81%AF%E3%82%82%E3%81%97%E3%81%8B%E3%81%97%E3%81%A6%E6%AC%A1%E3%81%AE%E6%97%A5">次の日の次の日はもしかして次の日</a></h2> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 3つの角のうち、001 以外のパワフルシックス数で 同じ数が2つあれば 左上と右下に配置しなければいけない、<br /> というルールがあったな☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 どうやって ふるい分けるんだぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 そうなって いないとき 弾けばいいんじゃないか☆?」</p> <pre><code>succeed = 0 failed = 0 end = 19 for y in reversed(range(0, end-1)): for x in range(0, end-1): for y2 in range(y+1, end): for x2 in range(x+1, end): # 左上角、右下角、左下角 はレッドゾーンの外にあること。 # 右上角はレッドゾーンの中にあること。 if not is_red_zone(x, y2) and not is_red_zone(x2, y) and not is_red_zone(x, y) and is_red_zone(x2, y2): tl = table[y2][x] br = table[y][x2] bl = table[y][x] tr = table[y2][x2] # 左上角、右下角、左下角 は 0 を踏んではいけない。 if tl != 0 and br != 0 and bl != 0: # 3つの角のうち 2つだけが同じなのに、それが左上と右下の配置でなければ、いけない。 if (bl == tl and bl != br) or (bl == br and bl != tl): if bl != 1: # ただし、001 は例外。 continue # 正方形であること。 # if y2-y == x2-x: result = "" if tl*br*bl % 1000 == tr: result = "o" succeed += 1 else: result = "x" failed += 1 print("[{} {}:{}][{} {}:{}][{} {}:{}]=[{} {}:{}({})]{} ".format( x, y2, tl, x2, y, br, x, y, bl, x2, y2, tr, tl*br*bl % 1000, result), end="") print("") print("Info : Succeed {:>3}".format(succeed)) print("Info : Failed {:>3}".format(failed)) print("Info : Rate {:>.4f}".format(succeed/(succeed+failed))) print("Info : Finished.") </code></pre> <pre><code># 正方形縛り Info : Succeed 92 Info : Failed 18 Info : Rate 0.8364 Info : Finished. # 長方形 Info : Succeed 1500 Info : Failed 288 Info : Rate 0.8389 </code></pre> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d23212ac4d8c.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 レートが似てきたということは、正方形かどうかは どうでもいいのかだぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 目視確認する?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 そんな便利な機能 付いてないんだが……☆」</p> <pre><code>def show_rect(corner): for y in reversed(range(0, 19)): for x in range(0, 19): cell = table[y][x] if 0 < corner.count([x, y]): # 赤枠が見えなくなるのは赦せだぜ☆(^~^) print("<{:>3}> ".format(cell), end="") elif is_red_zone(x, y): print("[{:>3}] ".format(cell), end="") else: print(" {:>3} ".format(cell), end="") print("") </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 用が足せれば それでいい、というようなプログラム☆」</p> <pre><code>succeed = 0 failed = 0 end = 19 for y in reversed(range(0, end-1)): for x in range(0, end-1): for y2 in range(y+1, end): for x2 in range(x+1, end): # 左上角、右下角、左下角 はレッドゾーンの外にあること。 # 右上角はレッドゾーンの中にあること。 if not is_red_zone(x, y2) and not is_red_zone(x2, y) and not is_red_zone(x, y) and is_red_zone(x2, y2): tl = table[y2][x] br = table[y][x2] bl = table[y][x] tr = table[y2][x2] # 左上角、右下角、左下角 は 0 を踏んではいけない。 if tl != 0 and br != 0 and bl != 0: # 3つの角のうち 2つだけが同じなのに、それが左上と右下の配置でなければ、いけない。 if (bl == tl and bl != br) or (bl == br and bl != tl): if bl != 1: # ただし、001 は例外。 continue # 正方形であること。 if y2-y == x2-x: result = "" if tl*br*bl % 1000 == tr: result = "o" succeed += 1 else: result = "x" failed += 1 # 反例だけ表示。 if result == "x": print("[{} {}:{}][{} {}:{}][{} {}:{}]=[{} {}:{}({})]{} ".format( x, y2, tl, x2, y, br, x, y, bl, x2, y2, tr, tl*br*bl % 1000, result)) show_rect([[x, y2], [x2, y], [x, y], [x2, y2]]) print("") print("Info : Succeed {:>3}".format(succeed)) print("Info : Failed {:>3}".format(failed)) print("Info : Rate {:>.4f}".format(succeed/(succeed+failed))) print("Info : Finished.") </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d21f9abdb062.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 これでどうか☆?」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d2341b44928f.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 次の記事で見ていきましょう!」</p> <p><書きかけ></p> むずでょ tag:crieit.net,2005:PublicArticle/15206 2019-07-05T21:00:14+09:00 2019-07-08T00:32:51+09:00 https://crieit.net/posts/e70dc6670aa34fca818ffdcf41aa3a67 九九を50乗しようぜ☆(^~^)<その1> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 九九を50乗しようぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 わらう☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 もっと何か 土日の遊ぶ日にすることないの?<br /> 数を眺めるとかではなく、ショッピングとか、流行りの映画を見に行くとか」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 そうだな……、土日は面白い3乗をしよう☆ 今日は のんびり 50乗しようぜ☆?」</p> <pre><code>print("| | | | | | | | | |") print("|--:|--:|--:|--:|--:|--:|--:|--:|--:|") for y in range(1, 10): for x in range(1, 10): print("|{:>100}".format((x*y) ** 50), end="") print("|") </code></pre> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 数式を書くと 読者が逃げるからな☆ Python3 で書くと こうだぜ☆<br /> 本当は フォーマットと 計算は分けた方がいいんだが めんどくさいんで 一緒くたにしたぜ☆」</p> <div class="table-responsive"><table> <thead> <tr> <th align="right"></th> <th align="right"></th> <th align="right"></th> <th align="right"></th> <th align="right"></th> <th align="right"></th> <th align="right"></th> <th align="right"></th> <th align="right"></th> </tr> </thead> <tbody> <tr> <td align="right">1</td> <td align="right">1125899906842624</td> <td align="right">  717897987691852588770249</td> <td align="right">1267650600228229401496703205376</td> <td align="right">88817841970012523233890533447265625</td> <td align="right">808281277464764060643139600456536293376</td> <td align="right">1798465042647412146620280340569649349251249</td> <td align="right">1427247692705959881058285969449495136382746624</td> <td align="right">515377520732011331036461129765621272702107522001</td> </tr> <tr> <td align="right">1125899906842624</td> <td align="right">1267650600228229401496703205376</td> <td align="right">808281277464764060643139600456536293376</td> <td align="right">1427247692705959881058285969449495136382746624</td> <td align="right">100000000000000000000000000000000000000000000000000</td> <td align="right">910043815000214977332758527534256632492715260325658624</td> <td align="right">2024891623976437135118764865774783290467102632746078437376</td> <td align="right">1606938044258990275541962092341162602522202993782792835301376</td> <td align="right">580263502580954076834176784379033815974530084312159480524570624</td> </tr> <tr> <td align="right">717897987691852588770249</td> <td align="right">808281277464764060643139600456536293376</td> <td align="right">515377520732011331036461129765621272702107522001</td> <td align="right">910043815000214977332758527534256632492715260325658624</td> <td align="right">63762150021404958690340780691485633724369108676910400390625</td> <td align="right">580263502580954076834176784379033815974530084312159480524570624</td> <td align="right">1291114435050719026386456475646628666554089222911187324493837291001</td> <td align="right">1024618246531448192529486101931556275808450117982966277666337116389376</td> <td align="right">369988485035126972924700782451696644186473100389722973815184405301748249</td> </tr> <tr> <td align="right">1267650600228229401496703205376</td> <td align="right">1427247692705959881058285969449495136382746624</td> <td align="right">910043815000214977332758527534256632492715260325658624</td> <td align="right">1606938044258990275541962092341162602522202993782792835301376</td> <td align="right">112589990684262400000000000000000000000000000000000000000000000000</td> <td align="right">1024618246531448192529486101931556275808450117982966277666337116389376</td> <td align="right">2279825290801480196406648025754245250165892545647714123325296883871514624</td> <td align="right">1809251394333065553493296640760748560207343510400633813116524750123642650624</td> <td align="right">653318623500070906096690267158057820537143710472954871543071966369497141477376</td> </tr> <tr> <td align="right">88817841970012523233890533447265625</td> <td align="right">100000000000000000000000000000000000000000000000000</td> <td align="right">63762150021404958690340780691485633724369108676910400390625</td> <td align="right">112589990684262400000000000000000000000000000000000000000000000000</td> <td align="right">7888609052210118054117285652827862296732064351090230047702789306640625</td> <td align="right">71789798769185258877024900000000000000000000000000000000000000000000000000</td> <td align="right">159735783946449685066351550639187570834853691081889337510801851749420166015625</td> <td align="right">126765060022822940149670320537600000000000000000000000000000000000000000000000000</td> <td align="right">45774719191272635313479811160208512239764957207999174215728999115526676177978515625</td> </tr> <tr> <td align="right">808281277464764060643139600456536293376</td> <td align="right">910043815000214977332758527534256632492715260325658624</td> <td align="right">580263502580954076834176784379033815974530084312159480524570624</td> <td align="right">1024618246531448192529486101931556275808450117982966277666337116389376</td> <td align="right">71789798769185258877024900000000000000000000000000000000000000000000000000</td> <td align="right">653318623500070906096690267158057820537143710472954871543071966369497141477376</td> <td align="right">1453665622146771666761099934493492006225419233517791732362319211631615699398426624</td> <td align="right">1153617588319010271378133306175011326520419737189530113840977835459429144159137562624</td> <td align="right">416570000833893042728223986474194773342643943311300369327346514389950199517744910565376</td> </tr> <tr> <td align="right">1798465042647412146620280340569649349251249</td> <td align="right">2024891623976437135118764865774783290467102632746078437376</td> <td align="right">1291114435050719026386456475646628666554089222911187324493837291001</td> <td align="right">2279825290801480196406648025754245250165892545647714123325296883871514624</td> <td align="right">159735783946449685066351550639187570834853691081889337510801851749420166015625</td> <td align="right">1453665622146771666761099934493492006225419233517791732362319211631615699398426624</td> <td align="right">3234476509624757991344647769100216810857203198904625400933895331391691459636928060001</td> <td align="right">2566855082530844723631412998988745692315870051226647080950683634425886192714576482533376</td> <td align="right"> 926888454802814296233914460079520723236295610087111414672676099577127360321004640144229249</td> </tr> <tr> <td align="right">1427247692705959881058285969449495136382746624</td> <td align="right">1606938044258990275541962092341162602522202993782792835301376</td> <td align="right">1024618246531448192529486101931556275808450117982966277666337116389376</td> <td align="right">1809251394333065553493296640760748560207343510400633813116524750123642650624</td> <td align="right">126765060022822940149670320537600000000000000000000000000000000000000000000000000</td> <td align="right">1153617588319010271378133306175011326520419737189530113840977835459429144159137562624</td> <td align="right">2566855082530844723631412998988745692315870051226647080950683634425886192714576482533376</td> <td align="right">2037035976334486086268445688409378161051468393665936250636140449354381299763336706183397376</td> <td align="right">735571377337281175975722145883189726959126286102281287306149927565761465446777498866888474624</td> </tr> <tr> <td align="right">515377520732011331036461129765621272702107522001</td> <td align="right">580263502580954076834176784379033815974530084312159480524570624</td> <td align="right">369988485035126972924700782451696644186473100389722973815184405301748249</td> <td align="right">653318623500070906096690267158057820537143710472954871543071966369497141477376</td> <td align="right">45774719191272635313479811160208512239764957207999174215728999115526676177978515625</td> <td align="right">416570000833893042728223986474194773342643943311300369327346514389950199517744910565376</td> <td align="right">926888454802814296233914460079520723236295610087111414672676099577127360321004640144229249</td> <td align="right">735571377337281175975722145883189726959126286102281287306149927565761465446777498866888474624</td> <td align="right">265613988875874769338781322035779626829233452653394495974574961739092490901302182994384699044001</td> </tr> </tbody> </table></div> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 何が面白いの?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 末尾3桁が面白い☆ ピックアップしてみよう☆」</p> <div class="table-responsive"><table> <thead> <tr> <th align="right"></th> <th align="right"></th> <th align="right"></th> <th align="right"></th> <th align="right"></th> <th align="right"></th> <th align="right"></th> <th align="right"></th> <th align="right"></th> </tr> </thead> <tbody> <tr> <td align="right">1</td> <td align="right">624</td> <td align="right">249</td> <td align="right">376</td> <td align="right">625</td> <td align="right">376</td> <td align="right">249</td> <td align="right">624</td> <td align="right">001</td> </tr> <tr> <td align="right">624</td> <td align="right">376</td> <td align="right">376</td> <td align="right">624</td> <td align="right">000</td> <td align="right">624</td> <td align="right">376</td> <td align="right">376</td> <td align="right">624</td> </tr> <tr> <td align="right">249</td> <td align="right">376</td> <td align="right">001</td> <td align="right">624</td> <td align="right">625</td> <td align="right">624</td> <td align="right">001</td> <td align="right">376</td> <td align="right">249</td> </tr> <tr> <td align="right">376</td> <td align="right">624</td> <td align="right">624</td> <td align="right">376</td> <td align="right">000</td> <td align="right">376</td> <td align="right">624</td> <td align="right">624</td> <td align="right">376</td> </tr> <tr> <td align="right">625</td> <td align="right">000</td> <td align="right">625</td> <td align="right">000</td> <td align="right">625</td> <td align="right">000</td> <td align="right">625</td> <td align="right">000</td> <td align="right">625</td> </tr> <tr> <td align="right">376</td> <td align="right">624</td> <td align="right">624</td> <td align="right">376</td> <td align="right">000</td> <td align="right">376</td> <td align="right">624</td> <td align="right">624</td> <td align="right">376</td> </tr> <tr> <td align="right">249</td> <td align="right">376</td> <td align="right">001</td> <td align="right">624</td> <td align="right">625</td> <td align="right">624</td> <td align="right">001</td> <td align="right">376</td> <td align="right">249</td> </tr> <tr> <td align="right">624</td> <td align="right">376</td> <td align="right">376</td> <td align="right">624</td> <td align="right">000</td> <td align="right">624</td> <td align="right">376</td> <td align="right">376</td> <td align="right">624</td> </tr> <tr> <td align="right">001</td> <td align="right">624</td> <td align="right">249</td> <td align="right">376</td> <td align="right">625</td> <td align="right">376</td> <td align="right">249</td> <td align="right">624</td> <td align="right">001</td> </tr> </tbody> </table></div> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 面白いだろ☆ わたしの見た数の中でも トップ3 に入る☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 面白くない」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 えっ……☆」</p> <p><a href="https://crieit.now.sh/upload_images/b645348fa3064360c679eef4dd6d8e185d1f49b10b631.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/b645348fa3064360c679eef4dd6d8e185d1f49b10b631.png?mw=700" alt="20190705math7a1b2.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/777e59673bfd9ec6df3a0837c5e20dbe5d1f49c5e190e.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/777e59673bfd9ec6df3a0837c5e20dbe5d1f49c5e190e.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_03_Ahee.gif" /></a><br /> 「 色を塗ってみよう☆<br /> この数を見て 面白いと思わない人は ループ物の映画を見ても あの伏線がここでつながった、とかいう仕込みに 驚いたりしない人だぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 面白くなーいっ」</p> <p><a href="https://crieit.now.sh/upload_images/873cbb9b4d6cc68e53af2ffd9e2c08af5d1feef4d9267.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/873cbb9b4d6cc68e53af2ffd9e2c08af5d1feef4d9267.png?mw=700" alt="20190705math7a1b4.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 こういう遊びをよくやるだろ☆ わたしが選ぶ10進面白3桁の数 ベスト6 だぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 なんだぜ それ☆ もう寝ろ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 ここに挙げた数は 1桁、2桁 でもいける☆<br /> 4桁でも できるのか 気になるだろ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 気にならない☆ 寝ろ☆」</p> <h2 id="お出かけ帰りの土曜日"><a href="#%E3%81%8A%E5%87%BA%E3%81%8B%E3%81%91%E5%B8%B0%E3%82%8A%E3%81%AE%E5%9C%9F%E6%9B%9C%E6%97%A5">お出かけ帰りの土曜日</a></h2> <p><a href="https://crieit.now.sh/upload_images/e3c532d2d4d8d388f43f7428ed5768ec5d207ff82c43c.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/e3c532d2d4d8d388f43f7428ed5768ec5d207ff82c43c.png?mw=700" alt="20190706math9a1b1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 掛け算が 有限のマグマになっている☆ じゃんけん できないとか 気になるぜ☆<br /> 足し算の方は 説明できるが、掛け算の方は説明できない箇所が残っているので それが何なのか 調べ中だぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 ただ、いくつかのルールが見える☆<br /> 分かっている分だけ 解説するぜ☆<br /> もしかすると 解説ではなく 設問 になってしまうかもしれないが……☆」</p> <p><a href="https://crieit.now.sh/upload_images/1af0f2f26897728483817315a97533e75d20854c8d276.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/1af0f2f26897728483817315a97533e75d20854c8d276.png?mw=700" alt="20190706math11a1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 0に 何足しても 元の数なんで この部分は面白くないんで、<br /> 見出しの方を 省略するぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/c69cddda891669e4c1b596680a3f45a75d208f9b1d59a.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/c69cddda891669e4c1b596680a3f45a75d208f9b1d59a.png?mw=700" alt="20190706math11a2c1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 つまり こうだが、 Mod 1000 というルールが利いていて、面白いところで 遊べる☆」</p> <p><a href="https://crieit.now.sh/upload_images/a21cee9e2286ddaa7dae15c7e9632fd65d208fd6e8ff0.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/a21cee9e2286ddaa7dae15c7e9632fd65d208fd6e8ff0.png?mw=700" alt="20190706math11a3b0c1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 このように 並べても 足し算のルールは生きている☆<br /> 例えば☆」</p> <p><a href="https://crieit.now.sh/upload_images/067baee51fb2c4a14cff4ebf4e289ff35d208ff60dfd1.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/067baee51fb2c4a14cff4ebf4e289ff35d208ff60dfd1.png?mw=700" alt="20190706math11a3b1c1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 説明のために 四角く残したが、どこでも 四角を作ってほしい☆<br /> このうち使うのは☆、」</p> <p><a href="https://crieit.now.sh/upload_images/99040e949ed4d4c7abb2f3430cc2ee425d20900d11b6a.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/99040e949ed4d4c7abb2f3430cc2ee425d20900d11b6a.png?mw=700" alt="20190706math11a3b2c1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 4つの角だぜ☆<br /> このルールは……、<br /> 九九の50乗で出てくる6個の数を 呼ぶのが長いんで これ以降 パワフルシックス とでも名付けるが、<br /> このルールは、パワフルシックスではない普通の足し算にも使える☆」</p> <p><a href="https://crieit.now.sh/upload_images/a613c23dc8fd2a9364433448e6db814f5d208f0ccbe6f.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/a613c23dc8fd2a9364433448e6db814f5d208f0ccbe6f.png?mw=700" alt="20190706math11a3b3c1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 左上 足す 右下 引く 左下 は 右上 だぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 原点を0に戻すのが 一工夫なのねえ」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 四角形足し算 とでも呼ぼう☆」</p> <p><a href="https://crieit.now.sh/upload_images/c5fd34931608fc6fc687879d5e75c8485d209bdfc9032.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/c5fd34931608fc6fc687879d5e75c8485d209bdfc9032.png?mw=700" alt="20190706math12a1b1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 この長方形足し算は 近傍4つを1かたまりにして足した この表にも使える☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 そんなにヒマなら 掃除機かけを手伝ってくれだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/7e3522694dc6c18660a702e376c8e4e55d209dec898a6.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/7e3522694dc6c18660a702e376c8e4e55d209dec898a6.png?mw=700" alt="20190706math12a2.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 近傍16個でも この長方形足し算のルールが通じることを 確認してほしい☆」</p> <p><a href="https://crieit.now.sh/upload_images/4cbfd6940728ffc6214694333ace47ed5d209e2941b28.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/4cbfd6940728ffc6214694333ace47ed5d209e2941b28.gif?mw=700" alt="KIFUWARABE_80x100x8_03_Iyaiya.gif" /></a><br /> 「 お父んは 掃除を手伝わねーっ☆!」</p> <p><a href="https://crieit.now.sh/upload_images/eba94f5d3dcc6838f5c67776b06fee6b5d20a10c22417.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/eba94f5d3dcc6838f5c67776b06fee6b5d20a10c22417.png?mw=700" alt="20190706math12a3.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 近傍64個でも この長方形足し算のルールが通じる☆<br /> 2乗の九九の なぜ☆?の問いを繰り返した奥底にあるもの を感じるぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 長方形足し算が 九九の正体なの?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 それが 1、4、9、6、5、6、9、4、1(石黒Golaxy)の良い理由になる☆<br /> だが しかし待ってほしい☆<br /> これで すべて分かったと思うのは 次の図を見てからにしてほしい☆」</p> <p><a href="https://crieit.now.sh/upload_images/6da8011a0ff1f222f530cbcc42b3df815d20bcaeea030.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/6da8011a0ff1f222f530cbcc42b3df815d20bcaeea030.png?mw=700" alt="20190706math13a0.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 さっきは かっちり 角から 4つのかたまり を作ったが、<br /> 1マス ずれたところからでも 4つのかたまり は作れるはずだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 豆ねぇ」</p> <p><a href="https://crieit.now.sh/upload_images/469e89bffd9c5b18972e4a1dc4b4ae5d5d20bd04eb525.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/469e89bffd9c5b18972e4a1dc4b4ae5d5d20bd04eb525.png?mw=700" alt="20190706math13a1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 それが こちら☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 なんか すっきり しすぎじゃないの!?<br /> 376+624 とかやるより 250+750 みたいな こっちの方が良くない??」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 掛け算も これで十分と見るむきも あるかもしれない☆<br /> だが どちらも 同じものだぜ☆<br /> 犬が こっち向いてるか あっち向いてるか、<br /> 時計が 9時か 3時か、<br /> そのような 表裏 を感じてほしい☆」</p> <p><a href="https://crieit.now.sh/upload_images/b067552cb6f53d8b0301f43c319ea7675d20bf2b39616.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/b067552cb6f53d8b0301f43c319ea7675d20bf2b39616.png?mw=700" alt="20190706math13a2.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 同様に、16近傍のかたまり も、1マスずれたところから 取ってみようぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 まだ他に ずれ方を 2つ残しているよな☆」</p> <p><a href="https://crieit.now.sh/upload_images/e340140358312ea90ae0970c674297605d20c2454b6e8.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/e340140358312ea90ae0970c674297605d20c2454b6e8.png?mw=700" alt="20190706math13a2b1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 これだけで いいんだな☆<br /> 言ってしまえば 市松模様 なら 長方形の足し算は OK なわけだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/61aeda2592cfe91bbfab8ec80d0760ae5d20c41b62a46.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/61aeda2592cfe91bbfab8ec80d0760ae5d20c41b62a46.png?mw=700" alt="20190707math14a1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 ずれ方は あと2つあると言っても、対角線に線対称な図形なんで 片方だけでいい☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 502 って何なのよーっ!<br /> すっきり しないのが 目に見えてんじゃない??」</p> <p><a href="https://crieit.now.sh/upload_images/1c8d15e2a7247e857ceac8c672d488a55d20c85388b78.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/1c8d15e2a7247e857ceac8c672d488a55d20c85388b78.png?mw=700" alt="20190707math14a2.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 小さくまとめると こんな感じだな☆<br /> 犬が 6時 を向いたとでも 思ってくれだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 前の例2つを 混ぜたような感じだな☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 これは 足し算のルール だったけど、<br /> 掛け算の説明には なってないわよね」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 真実に足を踏み入れてしまったかだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 ?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 説明しよう☆ 掛け算でも 四角形の掛け算ができることを☆」</p> <p><a href="https://crieit.now.sh/upload_images/b645348fa3064360c679eef4dd6d8e185d20ceee16f1a.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/b645348fa3064360c679eef4dd6d8e185d20ceee16f1a.png?mw=700" alt="20190705math7a1b2.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 九九の50乗の 点対称の表を使える☆<br /> ただ、そのまま使うと つじつま の合わない部分があるので 2つ 追加ルールを入れる☆<br /> 追加ルールの説明は 明日やる☆」</p> <p><a href="https://crieit.now.sh/upload_images/14015a39d15052805edc6a6c390ed4cc5d20d0903c5c1.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/14015a39d15052805edc6a6c390ed4cc5d20d0903c5c1.png?mw=700" alt="20190707math15a1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 説明のために 四角く切り抜いたが、これも使うのは 角の4つだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3e120819a9b8749a8d558be5184b58b65d20d1698be1f.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3e120819a9b8749a8d558be5184b58b65d20d1698be1f.png?mw=700" alt="20190707math15a2.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 四角形の掛け算では 3つとも掛けろだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 へぇ」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 四角形掛け算 とでも呼ぼう☆<br /> これを成立させるためには <strong>縛り</strong> のルールが2つ必要で、それでも例外が残っているが、<br /> わたしも あとで気づいたので それが必要になったときに 説明する☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 0 を掛けると 数が出てきたり、<br /> 1 を掛けたのに 元の数とは違う数が出てくるところがある☆<br /> 間違いだが、どう見るのがいいのか 寝ながら考えるぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/046bff93562c45669bef251915bda91a5d20d83c0b741.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/046bff93562c45669bef251915bda91a5d20d83c0b741.png?mw=700" alt="20190707math16a1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 お父んが フカシをこいてないか 検算しよう☆<br /> 九九の表でも 四角形の掛け算ができるのかだぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/65d24d614315c98ae1215b0f882fc4845d20d9159ee4d.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/65d24d614315c98ae1215b0f882fc4845d20d9159ee4d.png?mw=700" alt="20190707math16a1b1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 お父んと違って わたしは適当にはやらないぜ☆<br /> 四角形は 真ん中を切り抜こう☆<br /> 4つの数を ばらけさせるために 仮にタテ長にしよう☆」</p> <p><a href="https://crieit.now.sh/upload_images/0e6c9f9ec3746464590414775a30d6615d20d9f978265.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/0e6c9f9ec3746464590414775a30d6615d20d9f978265.png?mw=700" alt="20190707math16a1b2.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 24 × 14 × 6 は 2016 だぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/2b2aee516b0e6659a0a3c5c0b71b9efc5d20db4dbf48d.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/2b2aee516b0e6659a0a3c5c0b71b9efc5d20db4dbf48d.png?mw=700" alt="20190707math16a1b2c1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 そこは 24 × 14 ÷ 6 = 56 だぜ☆<br /> 原点に戻せだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 さっきは 原点に戻さなかったのに……☆」</p> <h2 id="つっぎつぎ次の日"><a href="#%E3%81%A4%E3%81%A3%E3%81%8E%E3%81%A4%E3%81%8E%E6%AC%A1%E3%81%AE%E6%97%A5">つっぎつぎ次の日</a></h2> <p><a href="https://crieit.now.sh/upload_images/9b26fa48469afb5424314965f590e2885d216e67a6dfe.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/9b26fa48469afb5424314965f590e2885d216e67a6dfe.png?mw=700" alt="20190707math18a1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 みりゃ 分かることだが、 右上と 左下は 向かい合っている☆<br /> 四角形を作れば 右上と左下の角が 入れ替わった形になり 非対称となる☆<br /> 非対称の場合、四角形掛け算は 働かないようだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/16caed3a219f2df98df64818da177a865d216d5b22d58.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/16caed3a219f2df98df64818da177a865d216d5b22d58.png?mw=700" alt="20190707math17a1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 そこで、四角形の4つの角のうち 3つ以上は 右上の区画以外に置けだぜ☆<br /> コタツの足の3本以上は 右上の区画以外に置け☆<br /> 4つ目の足だけ 右上に かかっても構わん☆」</p> <p><a href="https://crieit.now.sh/upload_images/444bc809d30be850147677045fff40205d2171776a8e7.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/444bc809d30be850147677045fff40205d2171776a8e7.png?mw=700" alt="20190707math17a2.png" /></a><br /> (※注: この図は あとで間違っていることが分かる)</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 000 のところは、0 と考えていい☆<br /> ただし、 右上以外の3本足を置いたときだけは 計算の中で 625 として扱えだぜ☆<br /> 計算結果として 出てきたときは 0 として扱えだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 そんな ライオンの皮をかぶったキツネみたいな ゼロ、認めていいの?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 計算すると そうなるから、そうした☆<br /> それだけの ことだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/519a0ccc4974948534fd8a8e6c4ba6e05d2176b85859e.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/519a0ccc4974948534fd8a8e6c4ba6e05d2176b85859e.png?mw=700" alt="20190707math19a1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 これが 本当に面白い九九の表だぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 249 × 376 × 625 が 選べないようになっているんだけど!<br /> 『セキュリティ』を禁止ワードにした お問い合わせフォーム 作るシステムエンジニアぐらいの 隠pay 体質じゃないの?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 選べない組み合わせは 答えが ゼロ になる☆」<br /> (※注: あとで 反例が出てくる)</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 ええっ!」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 瓶に水を注げは いつかは満たす単調増加のように 仕組みを 1つ1つ 説明していく☆」</p> <p><a href="https://crieit.now.sh/upload_images/5eb996ea38ddf74e46eacffd6bed90245d217a3bc3bca.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5eb996ea38ddf74e46eacffd6bed90245d217a3bc3bca.png?mw=700" alt="20190707math20a1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 ありえる順列は 6×6×6 の 216通り☆」</p> <p><a href="https://crieit.now.sh/upload_images/25581e4b1fe2c8d858e391f49409acc75d217ee690ec8.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/25581e4b1fe2c8d858e391f49409acc75d217ee690ec8.png?mw=700" alt="20190707math20a2.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 ありえる組み合わせは 6×5×4 の 120通り☆」</p> <p><a href="https://crieit.now.sh/upload_images/29a64e7112bd6537b19fb62fdbf6a2635d218523e917a.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/29a64e7112bd6537b19fb62fdbf6a2635d218523e917a.png?mw=700" alt="20190707math19a1b2c1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 中心に棒が立っていて、それを囲む輪ゴムがあって<br /> タイルパターンは 4方向に外側に向かっていくパターンになっていることから、<br /> <strong>鏡のようなもの になっているのだ</strong>、と見えれば<br /> 3乗の答えは1乗 となっているところを探して 自分で好きな所を選べる ことが 図形的直観で分かる☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 選好は 数学なのかしら?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 625 は 外側に 繰り返しで現れると 発想を飛躍して 625の3乗は 625☆<br /> 0の3乗 は 選べない組み合わせルールを適用して 0 ☆」</p> <p><a href="https://crieit.now.sh/upload_images/63003583be99366d9c1e6cd9b4caa4665d21879f61515.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/63003583be99366d9c1e6cd9b4caa4665d21879f61515.png?mw=700" alt="20190707math20a3.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 これで 6 減って 残りの組み合わせは 114通り☆」</p> <p><a href="https://crieit.now.sh/upload_images/59606e1aa1a8b1adc34069194f4091525d217ffe16707.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/59606e1aa1a8b1adc34069194f4091525d217ffe16707.png?mw=700" alt="20190707math19a1b1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 この2か所は 独立した2本足で 踏めることから、<br /> 6×5 の組み合わせは すべて 行える☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 だが 3本目の足が かなり 組み合わせの好き嫌いの激しい形になっている☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 こういうときは 分けの分かるところから 片づけていこう☆」</p> <p><a href="https://crieit.now.sh/upload_images/aa35d00e4fe27697759d350306732ae75d218bce196ce.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/aa35d00e4fe27697759d350306732ae75d218bce196ce.png?mw=700" alt="20190707math21a1b1.png" /></a><br /> (注: この図が間違っているのは あとで分かる)</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 249 × 249 Mod 1000 は 1 なんで、3本目と4本目の足は同じになるぜ☆ これは カンタンだろう☆」</p> <p><a href="https://crieit.now.sh/upload_images/daaafb0e0cb1e7aac309e93956ab36fc5d218e18cbcd1.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/daaafb0e0cb1e7aac309e93956ab36fc5d218e18cbcd1.png?mw=700" alt="20190707math22a1b1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 376 × 376 Mod 1000 は 376 なんで、376 は何乗しても 376☆ 計算量を減らせるな☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 376 × 249 Mod 1000 は 624 ……☆ あれっ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 失敗か☆!?」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 反例よっ!」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 わたしは 慌てない☆<br /> 376 × 376 × 249 と、 376 × 376 × 1 はいったん保留し、他の部分を調べるのを進めようぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 先に進んで 帰ってきたぜ☆ 分かった☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 ある意味 何をトライ&エラーし、どうして気づいたのか という おいしいところを省略か☆?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 何が無駄で 何が有用か トライ&エラー した結果だけ欲しい読者に合わせて 省略しよう☆<br /> わたしは ユーザー・フレンドリーだろ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/63cc3298f97b6e1c9f92e14d663476245d2194266ef12.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/63cc3298f97b6e1c9f92e14d663476245d2194266ef12.png?mw=700" alt="20190707math15a3.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 角を選ぶのに 順番がある☆<br /> よくよく図形の成り立ちを意識してみると 生まれ方に順番がある 鏡面 なのだった☆」</p> <p><a href="https://crieit.now.sh/upload_images/f3d28fb45f46efed3b257cf280751ed05d2197c517aa7.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/f3d28fb45f46efed3b257cf280751ed05d2197c517aa7.png?mw=700" alt="20190707math21a2b1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 掛け算に順番は無いが、 2乗は先に 対角線上に見つけろだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 こんな ヘンチクリンな表にも 演算の優先順位が利いてくるのねぇ」</p> <p><a href="https://crieit.now.sh/upload_images/1e65027a786bbabc049a73c612d87cc85d219a754f59b.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/1e65027a786bbabc049a73c612d87cc85d219a754f59b.png?mw=700" alt="20190707math22a2b1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 2乗を優先して 対角線に持ってきて こう☆<br /> 表にないのは 答えが 0 だぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 じゃあ何か☆<br /> お父んは 解き方を知っていないが その考え方が合ってると 思ってるのか☆?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 ほとんどの 学校から押し出されてくる 連中より マシだろ☆<br /> 解き方を知っているが どういう考え方があるのか 何も思っていない☆」</p> <p><a href="https://crieit.now.sh/upload_images/350f1a9140a69d0d480884ed260e2dfb5d219f4315f39.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/350f1a9140a69d0d480884ed260e2dfb5d219f4315f39.png?mw=700" alt="20190707math23a1b1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 624×624 は 376 なんで、376の掛け算と合流する☆<br /> この表にない 624×624×625 の組み合わせは 0 になるぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 なんで 表にない組み合わせは 0 になっていると思っているのか☆?<br /> すべての検証が終わったあとの 消去法でしか 出てこないだろ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 すべての組み合わせが表になっていると アッサンプション(仮定)して、<br /> 表に書けない 0 というものがあるのなら、<br /> 表に載っていないすべての組み合わせの答えは 0 になっていると考えるのが<br /> カンプメント(Complement)だぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 わたしは ただ、 アッサンプション(仮定) の答え合わせをしているだけだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 答え合わせが終わってから ブログを書けだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 間違ってりゃ ブログを消せばいいだろ☆<br /> お前らは 生存バイアス だけ眺めてろだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 子どものレベルに合う 親子喧嘩 わらう」</p> <p><a href="https://crieit.now.sh/upload_images/edda695b0244c8693952a5a3ec16cff15d21a55839a35.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/edda695b0244c8693952a5a3ec16cff15d21a55839a35.png?mw=700" alt="20190707math24a1b2.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 625 × 625 Mod 1000 は 625 なんで 625のn乗は 計算を省ける☆<br /> 625 × 376 は 0 ……、<br /> 625 × 624 も 0 ……、あれっ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 失敗か☆!? アッサンプションは どうしたんだぜ☆!?」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 反例よっ 反例っ!」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 わたしは慌てない☆<br /> 625 × 376 と 625 × 624 は あとで調べることにして、先に進もうぜ☆?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 先に進んできたぜ☆ 分かった☆」</p> <p><a href="https://crieit.now.sh/upload_images/af2017e608ee06a93183829c8c92a0b25d21c8dfcaa07.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/af2017e608ee06a93183829c8c92a0b25d21c8dfcaa07.png?mw=700" alt="20190707math17a2b1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 図上の 0 は選べない☆ 答えとして 0 が出てくるときだけ利用できる☆<br /> 割り算で 0 では割れないのと 雰囲気は似ているな☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 ヘンチクリンな図だぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/4060d0e555ab80189c73d3a120db8afb5d21cc8320756.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/4060d0e555ab80189c73d3a120db8afb5d21cc8320756.png?mw=700" alt="20190707math24a1b4c1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 これで、nの3乗、nの2乗×m は うまいこと表にまとまったぜ☆<br /> 残りは l × m × n だな☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 つらい」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 1の2乗がまだ だぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/d56137c766ce069906084fbab544337a5d21d034b50d4.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/d56137c766ce069906084fbab544337a5d21d034b50d4.png?mw=700" alt="20190707math19a1b0.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 1×1×1=1 と、 1×1×249=249 しか選べない☆<br /> 他の組み合わせは 0 か☆?」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 1×1×376 と、 1×1×624 と、 1×1×625 が無いのか☆<br /> 筋違い角になってるな☆」</p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 <strong>この図で 長方形掛け算 を作れない組み合わせの答えは<br /> 0 か 1 のどちらかになるのかもしれないな☆</strong>」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 本当か☆?」</p> <p><a href="https://crieit.now.sh/upload_images/eba5eac9b7e94e48b33dc42aff1c3b705d21e7520699e.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/eba5eac9b7e94e48b33dc42aff1c3b705d21e7520699e.png?mw=700" alt="20190707math20a4b3.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 l × m × n は合ってた☆<br /> 1 の掛け算のケースを考えるんで しばらく どこへでも 遊びに出てろだぜ☆」</p> <p><a href="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/5ac9fa3b390b658160717a7c1ef5008a5d1f342da9da4.gif?mw=700" alt="KIFUWARABE_80x100x8_01_Futu.gif" /></a><br /> 「 よっしゃ☆」</p> <p><a href="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/058791c2dd4c1604ce1bd9ec26d490ae5d1f387821cd0.gif?mw=700" alt="OKAZAKI_Yumemi_80x80x8_02_Syaberu.gif" /></a><br /> 「 よっしゃ」</p> <p><a href="https://crieit.now.sh/upload_images/588d02b80f502bf9eb002acdb905bf9a5d21ea3dcefee.png" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/588d02b80f502bf9eb002acdb905bf9a5d21ea3dcefee.png?mw=700" alt="20190707math25a1.png" /></a></p> <p><a href="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif" target="_blank" rel="nofollow noopener"><img src="https://crieit.now.sh/upload_images/3da2d4690cf2c3f101c5cbc0e48729f55d1f3824c95ed.gif?mw=700" alt="KITASHIRAKAWA_Chiyuri_80x100x8_01_Futu.gif" /></a><br /> 「 1は 掛け算の最後に持っていくと うまく いくことが思いついているんだが 日曜日は終わってしまった☆<br /> ブログが重くなったので 続きは次の記事へ☆」</p> <p><続く></p> むずでょ