{"id":4407,"date":"2025-05-18T15:57:47","date_gmt":"2025-05-18T06:57:47","guid":{"rendered":"https:\/\/tiss-japan.com\/?p=4407"},"modified":"2025-05-18T15:57:48","modified_gmt":"2025-05-18T06:57:48","slug":"%e3%80%8echatgpt%e3%81%a7%e8%84%b3%e5%b9%b4%e9%bd%a2%e9%a2%a8%e3%82%af%e3%82%a4%e3%82%ba%e4%bd%9c%e6%88%90%e3%81%97%e3%81%a6%e3%81%bf%e3%81%9f%e3%80%8f","status":"publish","type":"post","link":"https:\/\/tiss-japan.com\/?p=4407","title":{"rendered":"\u300eChatGPT\u3067\u8133\u5e74\u9f62\u98a8\u30af\u30a4\u30ba\u4f5c\u6210\u3057\u3066\u307f\u305f\u300f"},"content":{"rendered":"\n<p class=\"has-text-align-center has-border -border02\"><span class=\"swl-fz u-fz-xl\"><strong><span class=\"swl-marker mark_orange\">ChatGPT\u306b\u8133\u5e74\u9f62\u98a8\u30af\u30a4\u30ba\u4f5c\u6210\u3057\u3066\u307f\u305f<\/span><\/strong><\/span><\/p>\n\n\n\n<!DOCTYPE html>\n<html lang=\"ja\">\n<head>\n  <meta charset=\"UTF-8\">\n  <title>\u8133\u5e74\u9f62\u30c6\u30b9\u30c8<\/title>\n  <style>\n    body {\n      font-family: sans-serif;\n      background-color: #f4f4f4;\n      text-align: center;\n      padding: 50px;\n    }\n    button {\n      font-size: 1.2rem;\n      margin: 10px;\n      padding: 10px 20px;\n      border: none;\n      background-color: #4CAF50;\n      color: white;\n      border-radius: 8px;\n      cursor: pointer;\n    }\n    #question {\n      font-size: 1.5rem;\n      margin: 20px;\n    }\n    #result {\n      font-size: 1.3rem;\n      margin-top: 30px;\n      display: none;\n      background: #fff;\n      padding: 20px;\n      border-radius: 12px;\n      box-shadow: 0 0 10px rgba(0,0,0,0.2);\n    }\n  <\/style>\n<\/head>\n<body>\n  <h1>\u3042\u306a\u305f\u306e\u8133\u5e74\u9f62\u3092\u6e2c\u5b9a\u3057\u307e\u3059\uff01<\/h1>\n  <div id=\"question\">\u8aad\u307f\u8fbc\u307f\u4e2d&#8230;<\/div>\n  <div id=\"answers\"><\/div>\n  <div id=\"result\"><\/div>\n\n  <script>\n    const questions = [\n      {\n        q: \"\u6b21\u306e\u6570\u5217\u306e\u6b21\u306b\u6765\u308b\u6570\u5b57\u306f\uff1f\\n3, 6, 9, 12, ?\",\n        options: [15, 14, 13, 16],\n        correct: 15\n      },\n      {\n        q: \"\u732b\u304c3\u5339\u3001\u72ac\u304c2\u5339\u3044\u307e\u3059\u3002\u8db3\u306f\u5408\u8a08\u4f55\u672c\uff1f\",\n        options: [20, 18, 16, 22],\n        correct: 20\n      },\n      {\n        q: \"\u300c\u53f3\u304b\u3089\u8aad\u3093\u3067\u3082\u5de6\u304b\u3089\u8aad\u3093\u3067\u3082\u540c\u3058\u8a00\u8449\u300d\u3092\u4f55\u3068\u3044\u3046\uff1f\",\n        options: [\"\u30a2\u30ca\u30b0\u30e9\u30e0\", \"\u56de\u6587\", \"\u97fb\u6587\", \"\u4ff3\u53e5\"],\n        correct: \"\u56de\u6587\"\n      },\n      {\n        q: \"\u6b21\u306e\u3046\u3061\u6700\u3082\u91cd\u3044\u3082\u306e\u306f\uff1f\",\n        options: [\"1kg\u306e\u7fbd\u6bdb\", \"1kg\u306e\u9244\", \"\u540c\u3058\", \"\u6e2c\u308c\u306a\u3044\"],\n        correct: \"\u540c\u3058\"\n      },\n      {\n        q: \"1\u5206\u9593\u306b\u5fc3\u81d3\u304c70\u56de\u9f13\u52d5\u3059\u308b\u4eba\u30021\u6642\u9593\u3067\u4f55\u56de\uff1f\",\n        options: [4200, 420, 70, 7000],\n        correct: 4200\n      }\n    ];\n\n    let current = 0;\n    let score = 0;\n    const startTime = Date.now();\n\n    function showQuestion() {\n      if (current >= questions.length) return showResult();\n\n      const q = questions[current];\n      document.getElementById('question').innerText = q.q;\n      const answerBox = document.getElementById('answers');\n      answerBox.innerHTML = '';\n\n      q.options.forEach(option => {\n        const btn = document.createElement('button');\n        btn.textContent = option;\n        btn.onclick = () => {\n          if (option === q.correct) score++;\n          current++;\n          showQuestion();\n        };\n        answerBox.appendChild(btn);\n      });\n    }\n\n    function showResult() {\n      const totalTime = (Date.now() - startTime) \/ 1000;\n      let timeFactor = Math.floor(5 - Math.min(totalTime \/ 10, 5));\n      let brainAge = 80 - (score * 10) - timeFactor;\n      brainAge = Math.max(10, brainAge); \/\/ \u6700\u5c0f\u5e74\u9f62\u5236\u9650\n\n      const result = document.getElementById('result');\n      result.style.display = 'block';\n      result.innerHTML = `\u3042\u306a\u305f\u306e\u8133\u5e74\u9f62\u306f <strong>${brainAge}\u6b73<\/strong> \u3067\u3059\uff01<br>` +\n        `\u6b63\u89e3\u6570: ${score}\/${questions.length}\u3001\u6240\u8981\u6642\u9593: ${totalTime.toFixed(1)}\u79d2`;\n\n      document.getElementById('question').style.display = 'none';\n      document.getElementById('answers').style.display = 'none';\n    }\n\n    showQuestion();\n  <\/script>\n<\/body>\n<\/html>\n\n","protected":false},"excerpt":{"rendered":"<p>ChatGPT\u306b\u8133\u5e74\u9f62\u98a8\u30af\u30a4\u30ba\u4f5c\u6210\u3057\u3066\u307f\u305f \u8133\u5e74\u9f62\u30c6\u30b9\u30c8 \u3042\u306a\u305f\u306e\u8133\u5e74\u9f62\u3092\u6e2c\u5b9a\u3057\u307e\u3059\uff01 \u8aad\u307f\u8fbc\u307f\u4e2d&#8230;<\/p>\n","protected":false},"author":1,"featured_media":4408,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"swell_btn_cv_data":"","footnotes":""},"categories":[27],"tags":[],"class_list":["post-4407","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-chatgpt"],"_links":{"self":[{"href":"https:\/\/tiss-japan.com\/index.php?rest_route=\/wp\/v2\/posts\/4407","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tiss-japan.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tiss-japan.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tiss-japan.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tiss-japan.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4407"}],"version-history":[{"count":0,"href":"https:\/\/tiss-japan.com\/index.php?rest_route=\/wp\/v2\/posts\/4407\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/tiss-japan.com\/index.php?rest_route=\/wp\/v2\/media\/4408"}],"wp:attachment":[{"href":"https:\/\/tiss-japan.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4407"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tiss-japan.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4407"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tiss-japan.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4407"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}