今日の問題 2023年11~12月、過去10年間で最多の報告数となった感染症は? ① 感染性胃腸炎 ② インフルエンザ ③ 咽頭結膜熱 ④ 手足口病 ※回答はこちらからログインしてご確認ください 回答はこちら 正解は③ 咽頭結膜熱です! 例年、咽頭結膜熱は夏季にピークを迎えていたが、2023年は秋から冬季にかけて過去10年を大きく上回り、第48週(11月27日~12月3日)に1万1,720例と最多を記録した。 関連記事 ・コロナ2週連続で増加、今冬の動向に注意 過去の問題 ・医学的な文献上で血友病が初めて報告されたのはいつ? ・以下の直木賞・芥川賞受賞者のうち医師でない人物は? ・「痴呆」から「認知症」へと名称が変更されたのは? // ログイン調査 $(document).ready(function () { // 医師のみの場合 // if (js_class == '医師・研修医') { // $('#answerButton').removeAttr('disabled'); // console.log('医師・研修医IDでログイン中'); // } // ログインしてるか?のみチェック if ('' != sf_id) { $('#answerButton').removeAttr('disabled'); $('#notLoggedText').hide(); } }); const answerButton = document.getElementById('answerButton') answerButton.addEventListener('click', function() { this.classList.toggle('active') const answer = this.nextElementSibling if (answer.style.maxHeight) { answer.style.maxHeight = null } else { answer.style.maxHeight = answer.scrollHeight + 'px' } })