最近思うのですが、 めざまし好奇心(月・火)にでる 望月みさというレポータがかわいいです。

http://aint.co.jp/prof/m_misa/index.html
http://www.fujitv.co.jp/meza/kikaku/tokyo.html
ユーザータグ: | 23 : 15 : 21 | TV | トラックバック(0) | コメント(0) | page top↑

cm

気になるCM

サンスポ.COMトップ > 芸能 > ニュース
2007年06月01日 更新

長澤まさみにドキッ!ほてった気持ちに「カルピスウォーター」

女優、長澤まさみ(19)が出演する乳性飲料「カルピスウォーター」の新CM「少年の夏・海の家」篇が、2日から放送される。前作「少年の夏・バス停」篇の続編で、新CMは少年役の池松壮亮(16)がアルバイトする海の家で長澤と偶然再会するところから始まる。

前作で長澤にあこがれの気持ちを抱いていた池松少年は、突然現れた長澤に再び「ドキッ!」とさせられ、見とれてしまう。ほてった気持ちを冷ますのは長澤からもらった冷たい「カルピスウォーター」という内容。

年上の女性にあこがれる少年の甘酸っぱい恋が描かれたストーリーと、2人のさわやかな演技が甘酸っぱい味を見事に表現。大正11年に“初恋の味”と名付けられた「カルピス」のキャッチフレーズにピタリとハマった。CMソングはD−51の新曲「Forever Friends」。

CMでは描ききれなかったエピソードを盛り込んだWEBムービー「僕のいちばん熱かった夏」完全版が、1日から「カルピスウォーター」のHPで限定公開される。

stage6やveohとかにあげてくれる人がいたのでもらいました。 あげてくれた人ありがとう。

ユーザータグ: 北乃きい, | 13 : 25 : 14 | CM | トラックバック(0) | コメント(0) | page top↑

今年の27時間テレビを総括

眠いので眠る。後でかく。

追記

http://hitakelll.web.fc2.com/log/27htv/1185647730.html
http://hitakelll.web.fc2.com/log/27htv/1185652285.html
http://hitakelll.web.fc2.com/log/27htv/1185658934.html
http://hitakelll.web.fc2.com/log/27htv/1185669265.html
http://hitakelll.web.fc2.com/log/27htv/1185669897.html
http://hitakelll.web.fc2.com/log/27htv/1185670870.html
http://hitakelll.web.fc2.com/log/27htv/1185673529.html
http://hitakelll.web.fc2.com/log/27htv/1185675186.html
http://hitakelll.web.fc2.com/log/27htv/1185676568.html
http://hitakelll.web.fc2.com/log/27htv/1185677621.html
http://hitakelll.web.fc2.com/log/27htv/1185680400.html
http://hitakelll.web.fc2.com/log/27htv/1185692996.html
http://hitakelll.web.fc2.com/log/27htv/1185707412.html
http://hitakelll.web.fc2.com/log/27htv/1185711290.html
http://hitakelll.web.fc2.com/log/27htv/2007
http://hitakelll.web.fc2.com/log/27htv/fuji_tv_kakikomi_10_1185707929.html
http://hitakelll.web.fc2.com/log/27htv/fuji_tv_kakikomi_3_1185638415.html
http://hitakelll.web.fc2.com/log/27htv/hirai_rio_1185639350.html
http://hitakelll.web.fc2.com/log/27htv/honda_tomoko_1185639247.html
http://hitakelll.web.fc2.com/log/27htv/joshianasogo.html
http://hitakelll.web.fc2.com/log/27htv/joshianasogo_3.html
http://hitakelll.web.fc2.com/log/27htv/joshianasogo_6.html
http://hitakelll.web.fc2.com/log/27htv/joshianasogo_7.html
http://hitakelll.web.fc2.com/log/27htv/joshianasogo_9.html
http://hitakelll.web.fc2.com/log/27htv/ota.html
http://hitakelll.web.fc2.com/log/27htv/tv_3_1185147447.html
http://hitakelll.web.fc2.com/log/27htv/tvsaloon_1090755123.html
ユーザータグ: | 00 : 47 : 53 | TV | トラックバック(0) | コメント(0) | page top↑

ルンゲ・クッタ法(Runge-Kutta method)

/**********************************************************************
y' = x+ y, 0<=x<=1,y(0)=1の常微分方程式の解をもとめる
 **********************************************************************/
#include <stdio.h>
#define N 20
void runge_kutta (double x,double y,double a,double b,int n,double (*f)(double,double));
double f1(double x,double y);

int main(void)
{
  double y0=1.0,a=0.0,b=1.0;
  runge_kutta(0.0, y0, a, b, N, f1);
  return 0;
}

void runge_kutta (double x,double y,double a,double b,int n,double (*f)(double,double))
{
  int i;
  double h,k1,k2,k3,k4;
  h = (b-a)/n;
  x = a;
  printf("x=%lf y=%lf\n",x,y);/* 初期値を出力 */
  for(i=0;i<=n-1;i++){
    k1 = f(x,y);
    k2 = f(x + h/2, y + h/2 * k1);
    k3 = f(x + h/2, y + h/2 * k2);
    k4 = f(x + h, y + h* k3);
    y += h/6 * (k1 + 2*k2 + 2*k3 + k4);
    x += h;
    printf("x=%lf y=%lf\n",x,y);
  }
}

double f1(double x,double y)
{
  return x+y;
}
/**********************************************************************
$ ./a.out
x=0.000000 y=1.000000
x=0.050000 y=1.052542
x=0.100000 y=1.110342
x=0.150000 y=1.173668
x=0.200000 y=1.242805
x=0.250000 y=1.318051
x=0.300000 y=1.399718
x=0.350000 y=1.488135
x=0.400000 y=1.583649
x=0.450000 y=1.686624
x=0.500000 y=1.797442
x=0.550000 y=1.916506
x=0.600000 y=2.044237
x=0.650000 y=2.181082
x=0.700000 y=2.327505
x=0.750000 y=2.484000
x=0.800000 y=2.651082
x=0.850000 y=2.829294
x=0.900000 y=3.019206
x=0.950000 y=3.221419
x=1.000000 y=3.436563
**********************************************************************/
ユーザータグ: | 00 : 28 : 57 | 未分類 | トラックバック(0) | コメント(0) | page top↑

ホイン法(heun method)

/**********************************************************************
y' = x+ y, 0<=x<=1,y(0)=1の常微分方程式の解をもとめる
 **********************************************************************/
#include <stdio.h>
#define N 20

double f1(double x,double y);
void heun(double x,double y,double a,double b, int n, double(*f)(double,double));

int main(void)
{
  heun(0.0, 1.0, 0.0, 1.0, N, f1 );
  return 0;
}
void heun(double x,double y,double a,double b,int n,double (*f)(double,double))
{
  int i;
  double h,k1,k2;
  h = (b-a)/n;
  x = a;
  for(i =0; i<=n-1; i++){
    k1 = f(x,y);
    k2 = f(x + h, y + h*k1 );
    y += h / 2 * ( k1 + k2);
    x += h;
    printf("x=%lf y=%lf\n",x,y);
  }
}

double f1(double x,double y)
{
  return x+y;
}

/**********************************************************************
$ ./a.out
x=0.050000 y=1.052500
x=0.100000 y=1.110253
x=0.150000 y=1.173529
x=0.200000 y=1.242609
x=0.250000 y=1.317793
x=0.300000 y=1.399393
x=0.350000 y=1.487736
x=0.400000 y=1.583170
x=0.450000 y=1.686058
x=0.500000 y=1.796781
x=0.550000 y=1.915741
x=0.600000 y=2.043360
x=0.650000 y=2.180082
x=0.700000 y=2.326374
x=0.750000 y=2.482726
x=0.800000 y=2.649653
x=0.850000 y=2.827698
x=0.900000 y=3.017430
x=0.950000 y=3.219448
x=1.000000 y=3.434382
 **********************************************************************/
ユーザータグ: | 00 : 08 : 12 | 未分類 | トラックバック(0) | コメント(0) | page top↑

| ホーム | 次ページ

フリーエリア

カレンダー

06 | 2007/07 | 08
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 - - - -

ブログ内検索

月別アーカイブ

最近の記事

ユーザータグ(新着順)

ブログランキング

気が向いたら投票してください

FC2ブログランキング

テレビドラマ - (100%)

RSSフィード

カテゴリー

リンク

このブログをリンクに追加する

QRコード

QR