66 件中 1 から 40 までを表示しています。
17
bananza 2026/01/22 (木) 09:52:00

筋肉モリモリマッチョマンの変態だ
画像1
画像2
画像3
画像4
画像5
画像6

16
イルカ 2026/01/20 (火) 09:40:16 >> 14

ワロタwww

15
bananza 2026/01/20 (火) 09:40:02

=COUNTIF(H2:H12,  "不合格")

13
イルカ 2025/12/05 (金) 12:46:07

画像1

12
まんじゅう 2025/12/03 (水) 13:03:23

画像1
画像2
画像3
画像4
画像5
画像6
画像7

11
イルカ 2025/12/03 (水) 12:57:36

画像1
画像2
画像3
画像4
画像5
画像6
画像7

10
まんじゅう 2025/12/03 (水) 12:57:35

画像1
画像2
画像3
画像4
画像5

9
イルカ 2025/12/03 (水) 12:56:44

画像1
画像2
画像3
画像4
画像5
画像6
画像7
画像8
画像9
画像10

8
イルカ 2025/12/03 (水) 12:56:06

画像1
画像2
画像3
画像4
画像5
画像6
画像7
画像8
画像9
画像10

7
イルカ 2025/12/03 (水) 12:55:28

画像1
画像2
画像3
画像4
画像5
画像6

6
まんじゅう 2025/12/03 (水) 12:38:40 >> 5

訂正 拉致被害者一覧
画像1
画像2
画像3

5
まんじゅう 2025/12/03 (水) 12:36:56

拉致被害者一覧

12
shisi 2025/12/03 (水) 12:36:04

149
def swap(swap_list, index_1, index_2):
    temp = swap_list[index_1]
    swap_list[index_1] = swap_list[index_2]
    swap_list[index_2] = temp

def bubble_sort(list_to_sort):
    for i in range(len(list_to_sort)-1,0,-1):
        for j in range(i):
            if list_to_sort[j].height > list_to_sort[j+1].height:
                swap(list_to_sort,j,j+1)

bubble_sort(flamingos)

4
まんじゅう 2025/12/03 (水) 12:35:42 >> 2

画像1
画像2
画像3
画像4
画像5
画像6
画像7
画像8
画像9
画像10

3
イルカ 2025/12/03 (水) 12:34:51

画像1
画像2
画像3

11
shisi 2025/12/03 (水) 11:57:30

150
def swap(swap_list, index_1, index_2):
    temp = swap_list[index_1]
    swap_list[index_1] = swap_list[index_2]
    swap_list[index_2] = temp

def bubble_sort(list_to_sort):
    for i in range(len(list_to_sort)-1,0,-1):
        for j in range(i):
            if  list_to_sort[j].height < list_to_sort[j+1].height:
                swap(list_to_sort, j,  j+1)
bubble_sort(flamingos)

10
shisi 2025/12/03 (水) 11:56:55

149
def swap(swap_list, index_1, index_2):
    temp = swap_list[index_1]
    swap_list[index_1] = swap_list[index_2]
    swap_list[index_2] = temp

def bubble_sort(list_to_sort):
    for i in range(len(list_to_sort)-1,0,-1):
        for j in range(i):
            if list_to_sort[j].height > list_to_sort[j+1].height:
                swap(list_to_sort,j,j+1)

bubble_sort(flamingos)

9
shisi 2025/12/03 (水) 11:56:07

148
def swap(swap_list, index_1, index_2):
    temp = swap_list[index_1]
    swap_list[index_1] = swap_list[index_2]
    swap_list[index_2] = temp

def sort_once(list_to_sort, num_flamingos_to_sort):
    for index in range(num_flamingos_to_sort):
        if list_to_sort[index].height > list_to_sort[index+1].height:
            swap(list_to_sort, index, index+1)

num_flamingos_to_sort = len(flamingos) - 1

for index in range(num_flamingos_to_sort):
    print(num_flamingos_to_sort - index)
    sort_once(flamingos, num_flamingos_to_sort)

8
shisi 2025/12/03 (水) 11:55:33

147
def swap(swap_list, index_1, index_2):
    temp = swap_list[index_1]
    swap_list[index_1] = swap_list[index_2]
    swap_list[index_2] = temp

total_flamingos = len(flamingos)
for index in range(total_flamingos-1):
    if flamingos[index].height > flamingos[index+1].height:
        swap(flamingos, index, index+1)

for index in range(total_flamingos-2):
    if flamingos[index].height > flamingos[index+1].height:
        swap(flamingos, index, index+1)

for index in range(total_flamingos-3):
    if flamingos[index].height > flamingos[index+1].height:
        swap(flamingos, index,  index+1)

7
shisi 2025/12/03 (水) 11:54:33

146
flamingos[1] = flamingos[2]

6
shisi 2025/12/03 (水) 11:53:15

145
if flamingos[0].height > flamingos[1].height:
    temp = flamingos[0]
    flamingos[0] = flamingos[1]
    flamingos[1] = temp

if flamingos[1].height > flamingos[2].height:
    temp = flamingos[1]
    flamingos[1] = flamingos[2]
    flamingos[2] = temp

if flamingos[0].height > flamingos[1].height:
    temp = flamingos[1]
    flamingos[1]=flamingos[0]

5
shisi 2025/12/03 (水) 11:52:55

144
temp_flamingo = flamingos[0]
flamingos[0] = flamingos[2]
flamingos[2] = flamingos[1]
flamingos[1] = temp_flamingo

4
shisi 2025/12/03 (水) 11:52:25

143
flamingos[0] = temp_flamingo

3
shisi 2025/12/03 (水) 11:51:54

142
flamingos[0] = flamingos[2]
flamingos[1] = flamingos[3]

2
shisi 2025/12/03 (水) 11:50:44

141
clouds[2][7] = Cloud()

1
shisi 2025/12/03 (水) 11:49:56

140
clouds[2][2] = clouds[9][8]=Cloud()

2
イルカ 2025/12/03 (水) 11:45:08

画像1
画像2
画像3
画像4
画像5
画像6
画像7
画像8
画像9
画像10

1
イルカ 2025/12/03 (水) 11:43:38

画像1
画像2
画像3
画像4
画像5
画像6
画像7
画像8
画像9
画像10

15
イルカ 2025/09/25 (木) 11:01:57
9
gaikji 2025/09/24 (水) 09:59:20 f353d@18896

ji

8
shisi 2025/09/24 (水) 09:58:40

noooooooooooooooooooooooooooooooooo!
whata fack!
ohooooooooooo my god
you are mad and creepy!

7
イルカ 2025/09/22 (月) 13:04:31 修正

SPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAM
SPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAM
SPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAM
SPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAM
SPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAMSPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM
画像1

13
shisi 2025/09/17 (水) 09:48:07

これしてクレメンス
画像1

12
shisi 2025/09/11 (木) 11:59:49

ペンギンのやつは岩本が作ってるから荒らすな

2
shisi 2025/09/10 (水) 13:25:04

スワンコフ!スワンコフ!スワンコフ!スワンコフぅぅうううわぁああああああああああああああああああああああん!!!
あぁああああ…ああ…あっあっー!あぁああああああ!!!スワンコフスワンコフスワンコフぅううぁわぁああああ!!!
あぁクンカクンカ!クンカクンカ!スーハースーハー!スーハースーハー!いい匂いだなぁ…くんくん
んはぁっ!諏訪大河たんの黒の髪をクンカクンカしたいお!クンカクンカ!あぁあ!!
間違えた!モフモフしたいお!モフモフ!モフモフ!髪髪モフモフ!カリカリモフモフ…きゅんきゅんきゅい!!
現実0のスワンコフたんかわいかったよぅ!!あぁぁああ…あああ…あっあぁああああ!!ふぁぁあああんんっ!!
現実0決まって良かったねスワンコフたん!あぁあああああ!かわいい!スワンコフたん!かわいい!あっああぁああ!
現実0も発売されて嬉し…いやぁああああああ!!!にゃああああああああん!!ぎゃああああああああ!!
ぐあああああああああああ!!!現実なんて現実じゃない!!!!あ…現実も現実もよく考えたら…
ス ワ ン コ フ ち ゃ ん は 現実 じ ゃ な い?にゃあああああああああああああん!!うぁああああああああああ!!
そんなぁああああああ!!いやぁぁぁあああああああああ!!はぁああああああん!!京都ぁああああ!!
この!ちきしょー!やめてやる!!現実なんかやめ…て…え!?見…てる?表紙絵のスワンコフちゃんが僕を見てる?
表紙絵のスワンコフちゃんが僕を見てるぞ!スワンコフちゃんが僕を見てるぞ!挿絵のスワンコフちゃんが僕を見てるぞ!!
現実のスワンコフちゃんが僕に話しかけてるぞ!!!よかった…世の中まだまだ捨てたモンじゃないんだねっ!
いやっほぉおおおおおおお!!!僕にはスワンコフちゃんがいる!!やったよワイ!!ひとりでできるもん!!!
あ、現実のスワンコフちゃああああああああああああああん!!いやぁあああああああああああああああ!!!!
あっあんああっああんあ諏訪ぁあ!!、!!ぁああああああ!!!ぁあああ!!
ううっうぅうう!!俺の想いよスワンコフへ届け!!京都のスワンコフへ届け!

1
shisi 2025/09/10 (水) 13:24:56

スワンコフ!スワンコフ!スワンコフ!スワンコフぅぅうううわぁああああああああああああああああああああああん!!!
あぁああああ…ああ…あっあっー!あぁああああああ!!!スワンコフスワンコフスワンコフぅううぁわぁああああ!!!
あぁクンカクンカ!クンカクンカ!スーハースーハー!スーハースーハー!いい匂いだなぁ…くんくん
んはぁっ!諏訪大河たんの黒の髪をクンカクンカしたいお!クンカクンカ!あぁあ!!
間違えた!モフモフしたいお!モフモフ!モフモフ!髪髪モフモフ!カリカリモフモフ…きゅんきゅんきゅい!!
現実0のスワンコフたんかわいかったよぅ!!あぁぁああ…あああ…あっあぁああああ!!ふぁぁあああんんっ!!
現実0決まって良かったねスワンコフたん!あぁあああああ!かわいい!スワンコフたん!かわいい!あっああぁああ!
現実0も発売されて嬉し…いやぁああああああ!!!にゃああああああああん!!ぎゃああああああああ!!
ぐあああああああああああ!!!現実なんて現実じゃない!!!!あ…現実も現実もよく考えたら…
ス ワ ン コ フ ち ゃ ん は 現実 じ ゃ な い?にゃあああああああああああああん!!うぁああああああああああ!!
そんなぁああああああ!!いやぁぁぁあああああああああ!!はぁああああああん!!京都ぁああああ!!
この!ちきしょー!やめてやる!!現実なんかやめ…て…え!?見…てる?表紙絵のスワンコフちゃんが僕を見てる?
表紙絵のスワンコフちゃんが僕を見てるぞ!スワンコフちゃんが僕を見てるぞ!挿絵のスワンコフちゃんが僕を見てるぞ!!
現実のスワンコフちゃんが僕に話しかけてるぞ!!!よかった…世の中まだまだ捨てたモンじゃないんだねっ!
いやっほぉおおおおおおお!!!僕にはスワンコフちゃんがいる!!やったよワイ!!ひとりでできるもん!!!
あ、現実のスワンコフちゃああああああああああああああん!!いやぁあああああああああああああああ!!!!
あっあんああっああんあ諏訪ぁあ!!、!!ぁああああああ!!!ぁあああ!!
ううっうぅうう!!俺の想いよスワンコフへ届け!!京都のスワンコフへ届け!

11
shisi 2025/09/08 (月) 12:40:57

死ねネット弁慶

10
shisi 2025/09/08 (月) 12:39:16

まじで早くしてクレメンス