結果

問題 No.188 HAPPY DAY
ユーザー yun_appyun_app
提出日時 2016-05-12 12:40:31
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 68 ms / 1,000 ms
コード長 208 bytes
コンパイル時間 54 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 39,936 KB
最終ジャッジ日時 2024-10-12 23:42:57
合計ジャッジ時間 695 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
39,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

date = new Date(2015,0,1);
cnt = 0;
while(date.getFullYear() == 2015){
cnt += ((Math.floor(date.getDate()/10) + date.getDate()%10) == date.getMonth()+1)?1:0;
date.setDate(date.getDate()+1)
}
console.log(cnt);
0