{"id":190,"date":"2024-02-18T21:09:03","date_gmt":"2024-02-18T13:09:03","guid":{"rendered":"https:\/\/www.nenuacm.top\/?p=190"},"modified":"2024-02-18T21:09:04","modified_gmt":"2024-02-18T13:09:04","slug":"nenuoj-%e4%b9%8b-%e7%ae%97%e6%b3%951%e7%ac%ac6%e7%ab%a0","status":"publish","type":"post","link":"https:\/\/www.nenuacm.top\/index.php\/2024\/02\/18\/nenuoj-%e4%b9%8b-%e7%ae%97%e6%b3%951%e7%ac%ac6%e7%ab%a0\/","title":{"rendered":"NENUOJ \u4e4b \u7b97\u6cd51\u7b2c6\u7ae0"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><a href=\"http:\/\/39.101.69.154\/problem.php?id=1160\">6001 \u7b2c\u51e0\u5929\uff1f<\/a><\/h2>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<h4 class=\"wp-block-heading\">\u9898\u76ee\u63cf\u8ff0<\/h4>\n\n\n\n<p>\u7ed9\u5b9a\u4e00\u4e2a\u65e5\u671f\uff0c\u8f93\u51fa\u8fd9\u4e2a\u65e5\u671f\u662f\u8be5\u5e74\u7684\u7b2c\u51e0\u5929\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u8f93\u5165<\/h4>\n\n\n\n<p>\u8f93\u5165\u6570\u636e\u6709\u591a\u7ec4\uff0c\u6bcf\u7ec4\u5360\u4e00\u884c\uff0c\u6570\u636e\u683c\u5f0f\u4e3aYYYY\/MM\/DD\u7ec4\u6210\uff0c\u5177\u4f53\u53c2\u89c1\u8f93\u5165\u6837\u4f8b\uff0c\u53e6\u5916\uff0c\u53ef\u4ee5\u5411\u4f60\u786e\u4fdd\u6240\u6709\u7684\u8f93\u5165\u6570\u636e\u662f\u5408\u6cd5\u7684\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u8f93\u51fa<\/h4>\n\n\n\n<p>\u5bf9\u4e8e\u6bcf\u7ec4\u8f93\u5165\u6570\u636e\uff0c\u8f93\u51fa\u4e00\u884c\uff0c\u8868\u793a\u8be5\u65e5\u671f\u662f\u8be5\u5e74\u7684\u7b2c\u51e0\u5929\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u6837\u4f8b\u8f93\u5165 \u590d\u5236<\/h4>\n\n\n\n<p>&nbsp;1985\/1\/20<br>&nbsp;2006\/3\/12<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u6837\u4f8b\u8f93\u51fa \u590d\u5236<\/h4>\n\n\n\n<p>&nbsp;20<br>&nbsp;71<\/p>\n<\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">\u4ee3\u7801C\u8bed\u8a00 \u4ee3\u7801\u4e00\uff1a<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>#include&lt;stdio.h>\r\n#include&lt;string.h>\r\n#include&lt;math.h>\r\n#define debug printf(\"Hello\")\r\nint temp&#91;]={31,28,31,30,31,30,31,31,30,31,30,31};\r\nint main(){\r\n    \r\n    int yy,mm,dd;\r\n    while(~scanf(\"%d\/%d\/%d\",&amp;yy,&amp;mm,&amp;dd)){\r\n        int flag = 0;\r\n        int i;\r\n        if((yy%4==0&amp;&amp;yy%100!=0)||yy%400==0){\r\n            flag = 1;\r\n        }\r\n        int sum = 0;\r\n        if(mm == 1){\r\n            sum += dd;\r\n        }\r\n        if(mm == 2){\r\n            sum += 31 + dd;\r\n        }\r\n        if(mm >= 3){\r\n            for(i = 0;i &lt; mm-1;i++){\r\n                sum += temp&#91;i];\r\n                printf(\"%d\\t\",temp&#91;i]);\r\n            }\r\n            sum += dd;\r\n            if(flag == 1){\r\n                sum++;\r\n            }\r\n        }\r\n        printf(\"%d\\n\",sum);\r\n    }\r\n    return 0;\r\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">\u4ee3\u7801C\u8bed\u8a00 \u4ee3\u7801\u4e8c\uff1a<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>#include&lt;stdio.h>\r\nint month&#91;]={0,31,28,31,30,31,30,31,31,30,31,30,31};\r\n\/\/\u5224\u65ad\u662f\u5426\u662f\u95f0\u6708\r\nint judge(int year){\r\n    if(year % 400 == 0) return 1;\r\n    if(year % 100 != 0 &amp;&amp; year % 4 == 0) return 1;\r\n    return 0;\r\n}\r\nint main(){\r\n    int y,m,d;\r\n    while(~scanf(\"%d\/%d\/%d\",&amp;y,&amp;m,&amp;d)){\r\n        int day = 0;\r\n        for(int i = 1;i &lt; m;i++){\r\n            day += month&#91;i];\r\n        }\r\n        day += d + judge(y);\r\n        printf(\"%d\\n\",day);\r\n    }\r\n    return 0;\r\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"http:\/\/39.101.69.154\/problem.php?id=1161\">6002 \u65f6\u95f4\u683c\u5f0f\u8f6c\u6362<\/a><\/h2>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<h4 class=\"wp-block-heading\">\u9898\u76ee\u63cf\u8ff0<\/h4>\n\n\n\n<p>\u4e16\u754c\u5404\u5730\u6709\u591a\u79cd\u683c\u5f0f\u6765\u8868\u793a\u65e5\u671f\u548c\u65f6\u95f4\u3002\u5bf9\u4e8e\u65e5\u671f\u7684\u5e38\u7528\u683c\u5f0f\uff0c\u5728\u4e2d\u56fd\u5e38\u91c7\u7528\u683c\u5f0f\u7684\u662f\u201c\u5e74\u5e74\u5e74\u5e74\/\u6708\u6708\/\u65e5\u65e5\u201d\u6216\u5199\u4e3a\u82f1\u8bed\u7f29\u7565\u8868\u793a\u7684\u201dyyyy\/mm\/dd\u201d\uff0c\u6b64\u6b21\u7f16\u7a0b\u5927\u8d5b\u7684\u542f\u52a8\u65e5\u671f\u201c2009\/11\/07\u201d\u5c31\u662f\u7b26\u5408\u8fd9\u79cd\u683c\u5f0f\u7684\u4e00\u4e2a\u65e5\u671f\uff0c\u800c\u5317\u7f8e\u6240\u7528\u7684\u65e5\u671f\u683c\u5f0f\u5219\u4e3a\u201c\u6708\u6708\/\u65e5\u65e5\/\u5e74\u5e74\u5e74\u5e74\u201d\u6216\u201dmm\/dd\/yyyy\u201d\uff0c\u5982\u5c06\u201c2009\/11\/07\u201d\u6539\u6210\u8fd9\u79cd\u683c\u5f0f\uff0c\u5bf9\u5e94\u7684\u5219\u662f\u201d11\/07\/2009\u201d\u3002\u5bf9\u4e8e\u65f6\u95f4\u7684\u683c\u5f0f\uff0c\u5219\u5e38\u670912\u5c0f\u65f6\u5236\u548c24\u5c0f\u65f6\u5236\u7684\u8868\u793a\u65b9\u6cd5\uff0c24\u5c0f\u65f6\u5236\u75280-23\u6765\u8868\u793a\u4e00\u5929\u4e2d\u768424\u5c0f\u65f6\uff0c\u800c12\u5c0f\u65f6\u5236\u53ea\u91c7\u75281-12\u8868\u793a\u5c0f\u65f6\uff0c\u518d\u52a0\u4e0aam\/pm\u6765\u8868\u793a\u4e0a\u5348\u6216\u4e0b\u5348\uff0c\u6bd4\u5982\u201d17:30:00\u201d\u662f\u91c7\u752824\u5c0f\u65f6\u5236\u6765\u8868\u793a\u65f6\u95f4\uff0c\u800c\u5bf9\u5e94\u768412\u5c0f\u65f6\u5236\u7684\u8868\u793a\u65b9\u6cd5\u662f\u201d05:30:00pm\u201d\u3002\u6ce8\u610f12:00:00pm\u8868\u793a\u4e2d\u534812\u70b9\uff0c\u800c12:00:00am\u8868\u793a\u51cc\u666812\u70b9\u3002 \u5bf9\u4e8e\u7ed9\u5b9a\u7684\u91c7\u7528\u201dyyyy\/mm\/dd\u201d\u52a024\u5c0f\u65f6\u5236\uff08\u7528\u77ed\u6a2a\u7ebf\u201d-\u201d\u8fde\u63a5\uff09\u6765\u8868\u793a\u65e5\u671f\u548c\u65f6\u95f4\u7684\u5b57\u7b26\u4e32\uff0c\u8bf7\u7f16\u7a0b\u5b9e\u73b0\u5c06\u5176\u8f6c\u6362\u6210\u201dmm\/dd\/yyyy\u201d\u52a012\u5c0f\u65f6\u5236\u683c\u5f0f\u7684\u5b57\u7b26\u4e32\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u8f93\u5165<\/h4>\n\n\n\n<p>\u7b2c\u4e00\u884c\u4e3a\u4e00\u4e2a\u6574\u6570T\uff08T &lt;= 10\uff09\uff0c\u4ee3\u8868\u603b\u5171\u9700\u8981\u8f6c\u6362\u7684\u65f6\u95f4\u65e5\u671f\u5b57\u7b26\u4e32\u7684\u6570\u76ee\u3002 \u63a5\u4e0b\u6765\u7684\u603b\u5171T\u884c\uff0c\u6bcf\u884c\u90fd\u662f\u4e00\u4e2a\u9700\u8981\u8f6c\u6362\u7684\u65f6\u95f4\u65e5\u671f\u5b57\u7b26\u4e32\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u8f93\u51fa<\/h4>\n\n\n\n<p>\u5206\u884c\u8f93\u51fa\u8f6c\u6362\u4e4b\u540e\u7684\u7ed3\u679c\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u6837\u4f8b\u8f93\u5165 \u590d\u5236<\/h4>\n\n\n\n<p>&nbsp;2<br>&nbsp;2009\/11\/07-12:12:12<br>&nbsp;1970\/01\/01-00:01:01<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u6837\u4f8b\u8f93\u51fa \u590d\u5236<\/h4>\n\n\n\n<p>&nbsp;11\/07\/2009-12:12:12pm<br>&nbsp;01\/01\/1970-12:01:01am<\/p>\n<\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">\u4ee3\u7801C\u8bed\u8a00\uff1a<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>#include&lt;stdio.h>\r\nint main(){\r\n    \r\n    int t;\r\n    scanf(\"%d\",&amp;t);\r\n    int yy,mm,dd;\r\n    int h,m,s;\r\n    while(t--){\r\n        scanf(\"%d\/%d\/%d-%d:%d:%d\",&amp;yy,&amp;mm,&amp;dd,&amp;h,&amp;m,&amp;s);\r\n        if(h > 12) {\r\n            h -= 12;\r\n            printf(\"%02d\/%02d\/%04d-%02d:%02d:%02dpm\\n\",mm,dd,yy,h,m,s);\r\n        }\r\n        else if(h == 12) {\r\n            printf(\"%02d\/%02d\/%04d-%02d:%02d:%02dpm\\n\",mm,dd,yy,h,m,s);\r\n        }\r\n        else if(h &lt; 12){\r\n            if(h == 0){\r\n                h = 12;\r\n            }\r\n            printf(\"%02d\/%02d\/%04d-%02d:%02d:%02dam\\n\",mm,dd,yy,h,m,s);\r\n        }\r\n    }\r\n    \r\n    return 0;\r\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"http:\/\/39.101.69.154\/problem.php?id=1162\">6003 \u661f\u671f\u51e0\uff1f<\/a><\/h2>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<h4 class=\"wp-block-heading\">\u9898\u76ee\u63cf\u8ff0<\/h4>\n\n\n\n<p>\u4eca\u5929\u662f2007\u5e7411\u670817\u65e5\uff0c\u661f\u671f\u516d\u3002\u73b0\u5728\u5982\u679c\u6211\u544a\u8bc9\u4f60\u4e00\u4e2a\u65e5\u671f\uff0c\u4f60\u80fd\u544a\u8bc9\u5b83\u662f\u661f\u671f\u51e0\u5417\uff1f<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u8f93\u5165<\/h4>\n\n\n\n<p>\u8f93\u5165\u6709\u591a\u7ec4\u6d4b\u8bd5\u6570\u636e\uff0c\u6bcf\u4e2a\u6d4b\u8bd5\u6570\u636e\u5360\u4e00\u884c\u3002\u6bcf\u884c\u67093\u4e2a\u6574\u6570\uff0c\u5206\u522b\u8868\u793a\uff1a\u5e74(0&lt; year &lt; 10000), \u6708(0 &lt;= month &lt; 13), \u65e5(0 &lt;= day &lt; 32)\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u8f93\u51fa<\/h4>\n\n\n\n<p>\u6bcf\u4e2a\u6d4b\u8bd5\u6570\u636e\u8f93\u51fa\u4e00\u884c\uff0c\u5982\u679c\u8f93\u5165\u6570\u636e\u4e0d\u5bf9\uff0c\u8f93\u51fa\u201cillegal\u201d,\u5426\u5219\u8f93\u51fa\u5b83\u662f\u661f\u671f\u51e0\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u6837\u4f8b\u8f93\u5165 \u590d\u5236<\/h4>\n\n\n\n<p>&nbsp;2007 11 17<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u6837\u4f8b\u8f93\u51fa \u590d\u5236<\/h4>\n\n\n\n<p>&nbsp;Saturday<\/p>\n<\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">\u601d\u8def\uff1a<\/h3>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>\u8fd9\u9053\u9898\u4e3b\u8981\u662f\u7b97\u51fa\u6765\u8981\u6c42\u7684\u90a3\u4e00\u5929\u548c2007.11.17\u5dee\u4e86\u591a\u5c11\u5929\u3010\u65e2\u7136\u662f\u7b97\u5dee\u503c\uff0c\u6700\u540e\u5c31\u8981\u51cf1\u3011\u7136\u540e\u628a\u603b\u548c\u5929\u6570\u9664\u4ee57\u7684\u5468\u671f\uff0c\u4f59\u6570\u5c31\u662f0~6\u4e4b\u95f4\u7684\u4e00\u4e2a\uff0c\u6240\u5bf9\u5e94\u7684\u5c31\u662f\u5468\u4e00\u5230\u5468\u516d\u7684\u82f1\u6587\u3010\u63d0\u524d\u5b58\u50a8\u597d\u3011<\/p>\n<\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">\u4ee3\u7801C\u8bed\u8a00\uff1a<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>#include&lt;stdio.h>\r\nint m&#91;] = {31,28,31,30,31,30,31,31,30,31,30,31};\r\nchar str&#91;10]&#91;10] = {\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\",\"Sunday\"};\r\nint isrun(int yy){\r\n    if(yy % 400 == 0||(yy % 4 == 0 &amp;&amp; yy % 100 != 0)){\r\n        return 1;\r\n    }else{\r\n        return 0;\r\n    }\r\n}\r\nint main(){\r\n    \r\n    int yy,mm,dd;\r\n    while(~scanf(\"%d %d %d\",&amp;yy,&amp;mm,&amp;dd)){\r\n        int sum = 0;\r\n        if(yy &lt;= 0||yy >= 10000||mm &lt;= 0||mm >= 13||dd &lt;= 0||dd >=32){\r\n            printf(\"illegal\\n\");\r\n            continue;\r\n        }\r\n        int i;\r\n        sum += 365 * (yy - 1);\r\n        for(i = 1;i &lt; yy;i++){\r\n            sum += isrun(i);\r\n        }\r\n        for(i = 0;i &lt; mm - 1;i++){\r\n            sum += m&#91;i];\r\n        }\r\n        if(mm > 2){\r\n            sum += isrun(yy);\r\n        }\r\n        sum += dd - 1;\r\n        printf(\"%s\\n\",str&#91;sum % 7]);\r\n    }\r\n    \r\n    return 0;\r\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"http:\/\/39.101.69.154\/problem.php?id=1163\">6004 18\u5c81\u751f\u65e5<\/a><\/h2>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<h4 class=\"wp-block-heading\">\u9898\u76ee\u63cf\u8ff0<\/h4>\n\n\n\n<p>Gardon\u768418\u5c81\u751f\u65e5\u5c31\u8981\u5230\u4e86\uff0c\u4ed6\u5f53\u7136\u5f88\u5f00\u5fc3\uff0c\u53ef\u662f\u4ed6\u7a81\u7136\u60f3\u5230\u4e00\u4e2a\u95ee\u9898\uff0c\u662f\u4e0d\u662f\u6bcf\u4e2a\u4eba\u4ece\u51fa\u751f\u5f00\u59cb\uff0c\u5230\u8fbe18\u5c81\u751f\u65e5\u65f6\u6240\u7ecf\u8fc7\u7684\u5929\u6570\u90fd\u662f\u4e00\u6837\u7684\u5462\uff1f\u4f3c\u4e4e\u5e76\u4e0d\u5168\u90fd\u662f\u8fd9\u6837\uff0c\u6240\u4ee5\u4ed6\u60f3\u8bf7\u4f60\u5e2e\u5fd9\u8ba1\u7b97\u4e00\u4e0b\u4ed6\u548c\u4ed6\u7684\u51e0\u4e2a\u670b\u53cb\u4ece\u51fa\u751f\u5230\u8fbe18\u5c81\u751f\u65e5\u6240\u7ecf\u8fc7\u7684\u603b\u5929\u6570\uff0c\u8ba9\u4ed6\u597d\u6765\u6bd4\u8f83\u4e00\u4e0b\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u8f93\u5165<\/h4>\n\n\n\n<p>\u4e00\u4e2a\u6574\u6570T\uff0c\u8868\u793a\u6d4b\u8bd5\u6570\u636e\u7684\u7ec4\u6570,\u63a5\u4e0b\u6765\u6709T\u884c\u65e5\u671f,\u6bcf\u884c\u4e00\u4e2a\uff0c\u683c\u5f0f\u662fYYYY-MM-DD\u3002\u5982\u6211\u7684\u751f\u65e5\u662f1988-03-07\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u8f93\u51fa<\/h4>\n\n\n\n<p>T\u884c\uff0c\u6bcf\u884c\u4e00\u4e2a\u6570\uff0c\u8868\u793a\u6b64\u4eba\u4ece\u51fa\u751f\u523018\u5c81\u751f\u65e5\u6240\u7ecf\u8fc7\u7684\u5929\u6570\u3002\u5982\u679c\u8fd9\u4e2a\u4eba\u6ca1\u670918\u5c81\u751f\u65e5\uff0c\u5c31\u8f93\u51fa-1\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u6837\u4f8b\u8f93\u5165 \u590d\u5236<\/h4>\n\n\n\n<p>1<br>1988-03-07<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u6837\u4f8b\u8f93\u51fa \u590d\u5236<\/h4>\n\n\n\n<p>6574<\/p>\n<\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">\u4ee3\u7801C\u8bed\u8a00\uff1a<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>#include&lt;stdio.h>\r\nint m&#91;] = {31,28,31,30,31,30,31,31,30,31,30,31};\r\nint isrun(int yy){\r\n    if(yy % 400 == 0||(yy % 4 == 0 &amp;&amp; yy % 100 != 0)){\r\n        return 1;\r\n    }\r\n    return 0;\r\n}\r\nint main(){\r\n\r\n    int t;\r\n    int yy,mm,dd;\r\n    scanf(\"%d\",&amp;t);\r\n\r\n    while(t--){\r\n        int sum = 0;\r\n        scanf(\"%d-%d-%d\",&amp;yy,&amp;mm,&amp;dd);\r\n        int i;\r\n        sum += 365 * 18;\r\n        \/\/\u7b97\u4e0a\u95f0\u5e74\r\n        for(i = yy + 1;i &lt; yy + 18;i++){\r\n            sum += isrun(i);\r\n        }\r\n        \/\/\u51fa\u751f\u662f1\u30012\u6708\u4ee5\u5916\u7684\uff0c\u9700\u8981\u5224\u65ad18\u5c81\u90a3\u5e74\u662f\u4e0d\u662f\u95f0\u5e74\r\n        if(mm >= 3){\r\n            sum += isrun(yy + 18);\r\n        }\r\n        \/\/\u51fa\u751f\u662f1\u30012\u6708\u7684\uff0c\u9700\u8981\u5224\u65ad\u51fa\u751f\u90a3\u5e74\u662f\u4e0d\u662f\u95f0\u5e74\r\n        if(mm &lt;= 2){\r\n            sum += isrun(yy);\r\n        }\r\n        \/\/\u95f0\u5e74\u51fa\u751f\u7684\u4eba\u6ca1\u670918\u5c81\u751f\u65e5\r\n        if(mm == 2 &amp;&amp; dd == 29 &amp;&amp; isrun(yy+18) == 0){\r\n            sum = -1;\r\n        }\r\n\r\n        printf(\"%d\\n\",sum);\r\n\r\n    }\r\n    \r\n    return 0;\r\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"http:\/\/39.101.69.154\/problem.php?id=1164\">6005 \u6e38\u8239\u51fa\u79df<\/a><\/h2>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<h4 class=\"wp-block-heading\">\u9898\u76ee\u63cf\u8ff0<\/h4>\n\n\n\n<p>\u73b0\u6709\u516c\u56ed\u6e38\u8239\u79df\u8d41\u5904\u8bf7\u4f60\u7f16\u5199\u4e00\u4e2a\u79df\u8239\u7ba1\u7406\u7cfb\u7edf\u3002\u5f53\u6e38\u5ba2\u79df\u8239\u65f6\uff0c\u7ba1\u7406\u5458\u8f93\u5165\u8239\u53f7\u5e76\u6309\u4e0bS\u952e\uff0c\u7cfb\u7edf\u5f00\u59cb\u8ba1\u65f6\uff1b\u5f53\u6e38\u5ba2\u8fd8\u8239\u65f6\uff0c\u7ba1\u7406\u5458\u8f93\u5165\u8239\u53f7\u5e76\u6309\u4e0bE\u952e\uff0c\u7cfb\u7edf\u7ed3\u675f\u8ba1\u65f6\u3002\u8239\u53f7\u4e3a\u4e0d\u8d85\u8fc7100\u7684\u6b63\u6574\u6570\u3002\u5f53\u7ba1\u7406\u5458\u5c060\u4f5c\u4e3a\u8239\u53f7\u8f93\u5165\u65f6\uff0c\u8868\u793a\u4e00\u5929\u79df\u8239\u5de5\u4f5c\u7ed3\u675f\uff0c\u7cfb\u7edf\u5e94\u8f93\u51fa\u5f53\u5929\u7684\u6e38\u5ba2\u79df\u8239\u6b21\u6570\u548c\u5e73\u5747\u79df\u8239\u65f6\u95f4\u3002 \u6ce8\u610f\uff1a\u7531\u4e8e\u7ebf\u8def\u5076\u5c14\u4f1a\u6709\u6545\u969c\uff0c\u53ef\u80fd\u51fa\u73b0\u4e0d\u5b8c\u6574\u7684\u7eaa\u5f55\uff0c\u5373\u53ea\u6709\u79df\u8239\u6ca1\u6709\u8fd8\u8239\uff0c\u6216\u8005\u53ea\u6709\u8fd8\u8239\u6ca1\u6709\u79df\u8239\u7684\u7eaa\u5f55\uff0c\u7cfb\u7edf\u5e94\u80fd\u81ea\u52a8\u5ffd\u7565\u8fd9\u79cd\u65e0\u6548\u7eaa\u5f55\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u8f93\u5165<\/h4>\n\n\n\n<p>\u6d4b\u8bd5\u8f93\u5165\u5305\u542b\u82e5\u5e72\u6d4b\u8bd5\u6570\u636e\uff0c\u6bcf\u4e2a\u6d4b\u8bd5\u6570\u636e\u4e3a\u4e00\u6574\u5929\u7684\u79df\u8239\u7eaa\u5f55\uff0c\u683c\u5f0f\u4e3a\uff1a \u8239\u53f7\uff081~100\uff09 \u952e\u503c\uff08S\u6216E\uff09 \u53d1\u751f\u65f6\u95f4\uff08\u5c0f\u65f6:\u5206\u949f\uff09 \u6bcf\u4e00\u5929\u7684\u7eaa\u5f55\u4fdd\u8bc1\u6309\u65f6\u95f4\u9012\u589e\u7684\u987a\u5e8f\u7ed9\u51fa\u3002\u5f53\u8bfb\u5230\u8239\u53f7\u4e3a-1\u65f6\uff0c\u5168\u90e8\u8f93\u5165\u7ed3\u675f\uff0c\u76f8\u5e94\u7684\u7ed3\u679c\u4e0d\u8981\u8f93\u51fa\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u8f93\u51fa<\/h4>\n\n\n\n<p>\u5bf9\u6bcf\u4e2a\u6d4b\u8bd5\u6570\u636e\u8f93\u51fa1\u884c\uff0c\u5373\u5f53\u5929\u7684\u6e38\u5ba2\u79df\u8239\u6b21\u6570\u548c\u5e73\u5747\u79df\u8239\u65f6\u95f4\uff08\u4ee5\u5206\u949f\u4e3a\u5355\u4f4d\u7684\u7cbe\u786e\u5230\u4e2a\u4f4d\u7684\u6574\u6570\u65f6\u95f4\uff09\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u6837\u4f8b\u8f93\u5165 \u590d\u5236<\/h4>\n\n\n\n<p>&nbsp;1 S 08:10<br>&nbsp;2 S 08:35<br>&nbsp;1 E 10:00<br>&nbsp;2 E 13:16<br>&nbsp;0 S 17:00<br>&nbsp;0 S 17:00<br>&nbsp;3 E 08:10<br>&nbsp;1 S 08:20<br>&nbsp;2 S 09:00<br>&nbsp;1 E 09:20<br>&nbsp;0 E 17:00<br>&nbsp;-1<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u6837\u4f8b\u8f93\u51fa \u590d\u5236<\/h4>\n\n\n\n<p>&nbsp;2 196<br>&nbsp;0 0<br>&nbsp;1 60<\/p>\n<\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">\u601d\u8def\uff1a<\/h3>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>\u8fd9\u9053\u9898\u7684\u601d\u8def\u5c31\u662f\uff0c\u6bcf\u4e2a\u8239\u6709\u4e2a\u5f00\u59cb\u548c\u7ed3\u675f\uff0c\u6240\u4ee5\u628a\u6bcf\u8258\u8239\u7684\u5f00\u59cb\u505a\u4e2a\u6807\u8bb0\uff0c\u6ca1\u6709\u5f00\u59cb\u6807\u8bb0\u7684\u4e00\u5f8b\u4e0d\u5b58\u5728\u3002\u5982\u679c\u6709\u4e86\u5f00\u59cb\u6807\u8bb0\uff0c\u5c31\u5728\u7ed3\u675f\u7684\u65f6\u5019\u628a\u65f6\u95f4\u5dee\u52a0\u4e0a\uff0c\u7136\u540e\u66f4\u65b0\u5f00\u59cb\u6807\u8bb0\u3010\u987a\u4fbf\u8ba1\u6570\u3011\u3002\u8fd9\u9053\u9898\u4e00\u5b9a\u4e00\u5b9a\u8981\u5f00double\u5904\u7406\u3010\u53c2\u8003\u4e0b\u65b9\u4ee3\u7801\u3011\uff0c\u539f\u56e0\u7b14\u8005\u6ca1\u6709\u63a2\u7d22\u51fa\u6765\uff0c\u539f\u672c\u4ee5\u4e3a\u662f\u56db\u820d\u4e94\u5165\u7684\u95ee\u9898\uff0c\u4f46\u662f\u6700\u540e\u8fd8\u662f\u62a5\u9519\u3002\u3010\u6700\u597d\u7b11\u7684\u662f\u628a\u5168\u7f51\u7684\u9898\u89e3\u590d\u5236\u8fc7\u6765\u90fd\u662f\u9519\u7684hhh\u3011<\/p>\n<\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">\u4ee3\u7801C\u8bed\u8a00\uff1a<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>#include &lt;stdio.h>\r\n\r\nint main() {\r\n    int start&#91;101] = {0},boat,h,m;\r\n    char event&#91;101] = {'\\0'};\r\n    double count = 0,total = 0;\r\n    for (int i = 0; i &lt; 101; i++) {\r\n        start&#91;i] = -1;\r\n    }\r\n    while (scanf(\"%d %s %d:%d\",&amp;boat,event,&amp;h,&amp;m) != EOF) {\r\n        if (boat == -1) {\r\n            break;\r\n        }\r\n        \/\/\u66f4\u6539\u65f6\u95f4\u53c2\u7167\u7269\uff0c\u628a\u65f6\u95f4\u8f6c\u6362\u6210\u5bf9\u5e94\u7684\u5206\u949f\u6570\r\n        int minutes = h * 60 + m;\r\n        \/\/\u5982\u679c\u6309\u4e0b0\uff0c\u5f00\u59cb\u8f93\u51fa\r\n        if(boat == 0){\r\n            if(count == 0){\r\n                printf(\"0 0\\n\");\r\n            }else{\r\n                printf(\"%.0f %.0f\\n\",count,total \/ count);\r\n            }\r\n            count = 0;\r\n            total = 0;\r\n            for(int i = 0;i &lt; 101;i++){\r\n                start&#91;i] = -1;\r\n                event&#91;i] = '\\0';\r\n            }\r\n        }else if(event&#91;0] == 'S'){\r\n            start&#91;boat] = minutes;\r\n        }else if(event&#91;0] == 'E' &amp;&amp; start&#91;boat] != -1){\r\n            total += minutes - start&#91;boat];\r\n            count++;\r\n            start&#91;boat] = -1;\r\n        }\r\n    }\r\n    return 0;\r\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"http:\/\/39.101.69.154\/problem.php?id=1169\">6201\u65e5\u5386\u95ee\u9898<\/a><\/h2>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<h4 class=\"wp-block-heading\">\u9898\u76ee\u63cf\u8ff0<\/h4>\n\n\n\n<p>\u5728\u6211\u4eec\u73b0\u5728\u4f7f\u7528\u7684\u65e5\u5386\u4e2d, \u95f0\u5e74\u88ab\u5b9a\u4e49\u4e3a\u80fd\u88ab4 \u6574\u9664\u7684\u5e74\u4efd\uff0c\u4f46\u662f\u80fd\u88ab100\u6574\u9664\u800c\u4e0d\u80fd\u88ab400\u6574\u9664\u7684\u5e74\u662f\u4f8b\u5916\uff0c\u5b83\u4eec\u4e0d\u662f\u95f0\u5e74\u3002\u4f8b\u5982\uff1a1700,1800,1900\u548c2100\u4e0d\u662f\u95f0\u5e74\uff0c\u800c1600, 2000 \u548c2400\u662f\u95f0\u5e74\u3002\u7ed9\u5b9a\u4ece\u516c\u51432000\u5e741\u67081\u65e5\u5f00\u59cb\u901d\u53bb\u7684\u5929\u6570\uff0c\u4f60\u7684\u4efb\u52a1\u662f\u7ed9\u51fa\u8fd9\u4e00\u5929\u662f\u54ea\u5e74\u54ea\u6708\u54ea\u65e5\u661f\u671f\u51e0\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u8f93\u5165<\/h4>\n\n\n\n<p>\u8f93\u5165\u5305\u542b\u82e5\u5e72\u884c\uff0c\u6bcf\u884c\u5305\u542b\u4e00\u4e2a\u6b63\u6574\u6570\uff0c\u8868\u793a\u4ece2000\u5e741\u67081\u65e5\u5f00\u59cb\u901d\u53bb\u7684\u5929\u6570\u3002\u8f93\u5165\u6700\u540e\u4e00\u884c\u662f\u22121, \u4e0d\u5fc5\u5904\u7406\u3002\u53ef\u4ee5\u5047\u8bbe\u7ed3\u679c\u7684\u5e74\u4efd\u4e0d\u4f1a\u8d85\u8fc79999\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u8f93\u51fa<\/h4>\n\n\n\n<p>\u5bf9\u6bcf\u4e2a\u6d4b\u8bd5\u6837\u4f8b\uff0c\u8f93\u51fa\u4e00\u884c\uff0c\u8be5\u884c\u5305\u542b\u5bf9\u5e94\u7684\u65e5\u671f\u548c\u661f\u671f\u51e0\u3002\u683c\u5f0f\u4e3a\u201cYYYY-MM-DD DayOfWeek\u201d, \u5176\u4e2d \u201cDayOfWeek\u201d \u5fc5\u987b\u662f\u4e0b\u9762\u4e2d\u7684\u4e00\u4e2a\uff1a \u201cSunday\u201d, \u201cMonday\u201d, \u201cTuesday\u201d, \u201cWednesday\u201d,\u201cThursday\u201d\uff0c\u201cFriday\u201d\u548c \u201cSaturday\u201d\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u6837\u4f8b\u8f93\u5165 \u590d\u5236<\/h4>\n\n\n\n<p>&nbsp;1730<br>&nbsp;1740<br>&nbsp;1750<br>&nbsp;1751<br>&nbsp;-1<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u6837\u4f8b\u8f93\u51fa \u590d\u5236<\/h4>\n\n\n\n<p>&nbsp;2004-09-26 Sunday<br>&nbsp;2004-10-06 Wednesday<br>&nbsp;2004-10-16 Saturday<br>&nbsp;2004-10-17 Sunday<\/p>\n<\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">\u4ee3\u7801C\u8bed\u8a00\uff1a<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>#include&lt;stdio.h>\r\nint m&#91;] = {0,31,28,31,30,31,30,31,31,30,31,30,31};\r\nchar week&#91;15]&#91;15] = {\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"};\r\nint isrun(int year){\r\n    if((year % 4==0 &amp;&amp; year % 100 != 0) || year % 400 == 0) return 1;\r\n    return 0;\r\n}\r\nint main(){\r\n    int n;\r\n    \r\n    while(~scanf(\"%d\",&amp;n)){\r\n        int j = n;\r\n        int yy = 2000,mm = 1,dd = 1;\r\n        int i = 1;\r\n        if(n == -1) break;\r\n        \/\/\u76f4\u63a5\u6a21\u62df\u8ba1\u7b97\r\n        while(n){\r\n            if(n >= 365 &amp;&amp; !isrun(yy)){\r\n                yy++;\r\n                n -= 365;\r\n            }\r\n            else if(n >= 366 &amp;&amp; isrun(yy)){\r\n                yy++;\r\n                n -= 366;\r\n            }\r\n            else {\r\n                while(n > m&#91;i]){\r\n                    if(isrun(yy) &amp;&amp; i == 3) n -= 1;\r\n                    n -= m&#91;i];\r\n                    mm++;\r\n                    i++;\r\n                }\r\n                dd += n;\r\n                n -= n;\r\n            }\r\n            \r\n        }\r\n        printf(\"%04d-%02d-%02d %s\\n\",yy,mm,dd,week&#91;(j-1) % 7]);\r\n    }\r\n    return 0;\r\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"http:\/\/39.101.69.154\/problem.php?id=1170\">6202\u7279\u6b8a\u65e5\u5386\u8ba1\u7b97<\/a><\/h2>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<h4 class=\"wp-block-heading\">\u9898\u76ee\u63cf\u8ff0<\/h4>\n\n\n\n<p>\u6709\u4e00\u79cd\u7279\u6b8a\u7684\u65e5\u5386\u6cd5\uff0c\u5b83\u7684\u4e00\u5929\u548c\u6211\u4eec\u73b0\u5728\u7528\u7684\u65e5\u5386\u6cd5\u7684\u4e00\u5929\u662f\u4e00\u6837\u957f\u7684\u3002\u5b83\u6bcf\u5929\u670910\u4e2a\u5c0f\u65f6\uff0c\u6bcf\u4e2a\u5c0f\u65f6\u6709100\u5206\u949f\uff0c\u6bcf\u5206\u949f\u6709100\u79d2\u300210\u5929\u7b97\u4e00\u5468\uff0c10\u5468\u7b97\u4e00\u4e2a\u6708\uff0c10\u4e2a\u6708\u7b97\u4e00\u5e74\u3002\u73b0\u5728\u8981\u4f60\u7f16\u5199\u4e00\u4e2a\u7a0b\u5e8f\uff0c\u5c06\u6211\u4eec\u5e38\u7528\u7684\u65e5\u5386\u6cd5\u7684\u65e5\u671f\u8f6c\u6362\u6210\u8fd9\u79cd\u7279\u6b8a\u7684\u65e5\u5386\u8868\u793a\u6cd5\u3002\u8fd9\u79cd\u65e5\u5386\u6cd5\u7684\u65f6\u3001\u5206\u3001\u79d2\u662f\u4ece0\u5f00\u59cb\u8ba1\u6570\u7684\u3002\u65e5\u3001\u6708\u4ece1\u5f00\u59cb\u8ba1\u6570\uff0c\u5e74\u4ece0\u5f00\u59cb\u8ba1\u6570\u3002\u79d2\u6570\u4e3a\u6574\u6570\u3002\u5047\u8bbe 0:0:0 1.1.2000 \u7b49\u540c\u4e8e\u7279\u6b8a\u65e5\u5386\u6cd5\u7684 0:0:0 1.1.0\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u8f93\u5165<\/h4>\n\n\n\n<p>\u7b2c\u4e00\u884c\u662f\u4e00\u4e2a\u6b63\u6574\u6570N,\u8868\u660e\u4e0b\u9762\u6709N\u7ec4\u8f93\u5165\u3002\u6bcf\u7ec4\u8f93\u5165\u6709\u4e00\u884c\uff0c\u683c\u5f0f\u5982\u4e0b\uff1ahour:minute:second day.month.year \u8868\u793a\u5e38\u89c4\u7684\u65e5\u671f\u3002\u65e5\u671f\u603b\u662f\u5408\u6cd5\u7684\u30022000 &lt;= year &lt;= 50000\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u8f93\u51fa<\/h4>\n\n\n\n<p>\u6bcf\u7ec4\u8f93\u5165\u8981\u6c42\u8f93\u51fa\u4e00\u884c\u3002\u683c\u5f0f\u5982\u4e0b\uff1amhour:mmin:msec mday.mmonth.myear \u662f\u8f93\u5165\u65e5\u671f\u7684\u7279\u6b8a\u65e5\u5386\u8868\u793a\u65b9\u6cd5\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u6837\u4f8b\u8f93\u5165 \u590d\u5236<\/h4>\n\n\n\n<p>&nbsp;7<br>&nbsp;0:0:0 1.1.2000<br>&nbsp;10:10:10 1.3.2001<br>&nbsp;0:12:13 1.3.2400<br>&nbsp;23:59:59 31.12.2001<br>&nbsp;0:0:1 20.7.7478<br>&nbsp;0:20:20 21.7.7478<br>&nbsp;15:54:44 2.10.20749<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u6837\u4f8b\u8f93\u51fa \u590d\u5236<\/h4>\n\n\n\n<p>&nbsp;0:0:0 1.1.0<br>&nbsp;4:23:72 26.5.0<br>&nbsp;0:8:48 58.2.146<br>&nbsp;9:99:98 31.8.0<br>&nbsp;0:0:1 100.10.2000<br>&nbsp;0:14:12 1.1.2001<br>&nbsp;6:63:0 7.3.6848<\/p>\n<\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">\u601d\u8def\uff1a<\/h3>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>\u5176\u5b9e\u65f6\u95f4\u5c31\u662f\u4e00\u79cd\u8fdb\u5236\uff0c\u901a\u5e38\u65f6\u95f4\u7684\u8fdb\u5236\u662f60\u8fdb\u5236\uff0c\u800c\u73b0\u5728\u8981\u6c42\u6211\u4eec\u8f6c\u6362\u6210\u5341\u8fdb\u5236\u3002\u90a3\u6211\u4eec\u7684\u505a\u6cd5\u5c31\u662f\u5148\u628a\u65f6\u95f4\u90fd\u8f6c\u6362\u6210\u79d2\u949f\uff0c\u7136\u540e\u518d\u628a\u79d2\u949f\u7528\u5341\u8fdb\u5236\u5904\u7406\uff0c\u5c31\u80fd\u5f97\u5230\u79d2\uff0c\u5206\u949f\uff0c\u5c0f\u65f6\u3002\u65e5\u671f\u4e5f\u662f\u540c\u7406\uff0c\u8f6c\u6362\u6210\u6700\u4f4e\u7684\u6807\u51c6\uff08\u5206\u949f\uff09\u540e\uff0c\u518d\u6162\u6162\u8f6c\u6362\u6210\u5929\u6570\uff0c\u6708\u4efd\uff0c\u5e74\uff08\u5929\u6570\u9664\u4ee51000\uff09\u3002<\/p>\n<\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">\u4ee3\u7801C\u8bed\u8a00\uff1a<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>#include&lt;stdio.h>\r\nint months&#91;] = {0,31,28,31,30,31,30,31,31,30,31,30,31};\r\nint isrun(int year){\r\n    if((year % 4==0 &amp;&amp; year % 100 != 0) || year % 400 == 0) return 1;\r\n    return 0;\r\n}\r\nint main(){\r\n    int n;\r\n    scanf(\"%d\",&amp;n);\r\n    while(n--){\r\n        int i;\r\n        int hh,mm,ss,d,m,y;\r\n        int sum = 0;\r\n        long long tot = 0;\r\n        scanf(\"%d:%d:%d %d.%d.%d\",&amp;hh,&amp;mm,&amp;ss,&amp;d,&amp;m,&amp;y);\r\n        \/\/\u5f97\u5230\u79d2\u6570\uff08\u5df2\u7ecf\u662f\u65b0\u5355\u4f4d\u4e86\uff09\r\n        tot = 100000LL * (hh * 3600 + mm * 60 + ss)\/(3600 * 24);\r\n        \/\/\u5f97\u5230\u5929\u6570\r\n        for(i = 2000;i &lt; y;i++){\r\n            if(isrun(i)) sum += 366;\r\n            else sum += 365;\r\n        }\r\n        for(i = 1;i &lt; m;i++){\r\n            sum += months&#91;i];\r\n            if(i == 3 &amp;&amp; isrun(y)) sum += 1;\r\n        }\r\n        if(m == 3 &amp;&amp; isrun(y)) sum += 1;\r\n        sum += d;\r\n        sum -= 1;\r\n        \/\/\u8fdb\u5236\u8f6c\u6362\u8f93\u51fa\r\n        printf(\"%d:%d:%d %d.%d.%d\\n\",tot\/10000,tot%10000\/100,tot%100,sum%100+1,sum%1000\/100+1,sum\/1000);\r\n    }\r\n    return 0;\r\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"http:\/\/39.101.69.154\/problem.php?id=1171\">6203 \u65f6\u533a\u8f6c\u6362<\/a><\/h2>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<h4 class=\"wp-block-heading\">\u9898\u76ee\u63cf\u8ff0<\/h4>\n\n\n\n<p>\u76f4\u523019\u4e16\u7eaa\uff0c\u65f6\u95f4\u6821\u51c6\u662f\u4e00\u4e2a\u7eaf\u7cb9\u7684\u5730\u65b9\u73b0\u8c61\u3002\u6bcf\u4e00\u4e2a\u6751\u5e84\u5f53\u592a\u9633\u5347\u5230\u6700\u9ad8\u70b9\u7684\u65f6\u5019\u628a\u4ed6\u4eec\u7684\u65f6\u949f\u8c03\u5230\u4e2d\u534812\u70b9\u3002\u4e00\u4e2a\u949f\u8868\u5236\u9020\u5546\u4eba\u5bb6\u6216\u8005\u6751\u91cc\u4e3b\u8868\u7684\u65f6\u95f4\u88ab\u8ba4\u4e3a\u662f\u5b98\u65b9\u65f6\u95f4\uff0c\u5e02\u6c11\u4eec\u628a\u81ea\u5bb6\u7684\u949f\u8868\u548c\u8fd9\u4e2a\u65f6\u95f4\u5bf9\u9f50\u3002\u6bcf\u5468\u4e00\u4e9b\u70ed\u5fc3\u7684\u5e02\u6c11\u4f1a\u5e26\u7740\u65f6\u95f4\u6807\u51c6\u7684\u8868\uff0c\u6e38\u8d70\u5927\u8857\u5c0f\u5df7\u4e3a\u5176\u4ed6\u5e02\u6c11\u5bf9\u8868\u3002\u5728\u57ce\u5e02\u4e4b\u95f4\u65c5\u6e38\u7684\u8bdd\uff0c\u5728\u5230\u8fbe\u65b0\u5730\u65b9\u7684\u65f6\u5019\u9700\u8981\u628a\u6000\u8868\u6821\u51c6\u3002\u4f46\u662f\uff0c\u5f53\u94c1\u8def\u6295\u5165\u4f7f\u7528\u4e4b\u540e\uff0c\u8d8a\u6765\u8d8a\u591a\u7684\u4eba\u9891\u7e41\u5730\u957f\u8ddd\u79bb\u5730\u5f80\u6765\uff0c\u65f6\u95f4\u53d8\u5f97\u8d8a\u6765\u8d8a\u91cd\u8981\u3002\u5728\u94c1\u8def\u7684\u65e9\u671f\uff0c\u65f6\u523b\u8868\u975e\u5e38\u8ba9\u4eba\u8ff7\u60d1\uff0c\u6bcf\u4e00\u4e2a\u6240\u8c13\u7684\u505c\u9760\u65f6\u95f4\u90fd\u662f\u57fa\u4e8e\u505c\u9760\u5730\u70b9\u7684\u5f53\u5730\u65f6\u95f4\u3002\u65f6\u95f4\u7684\u6807\u51c6\u5316\u5bf9\u4e8e\u94c1\u8def\u7684\u9ad8\u6548\u8fd0\u8425\u53d8\u5f97\u975e\u5e38\u91cd\u8981\u3002 \u57281878\u5e74\uff0c\u52a0\u62ff\u5927\u4ebaSir Sanford Fleming\u63d0\u8bae\u4f7f\u7528\u4e00\u4e2a\u5168\u7403\u7684\u65f6\u533a\uff08\u8fd9\u4e2a\u5efa\u8bae\u88ab\u91c7\u7eb3\uff0c\u5e76\u884d\u751f\u4e86\u4eca\u5929\u6211\u4eec\u6240\u4f7f\u7528\u7684\u5168\u7403\u65f6\u533a\u7684\u6982\u5ff5\uff09\uff0c\u4ed6\u5efa\u8bae\u628a\u4e16\u754c\u5206\u621024\u4e2a\u65f6\u533a\uff0c\u6bcf\u4e00\u4e2a\u8de8\u8d8a15\u5ea6\u7ecf\u7ebf\uff08\u56e0\u4e3a\u5730\u7403\u7684\u7ecf\u5ea6360\u5ea6\uff0c\u5212\u5206\u621024\u5757\u540e\uff0c\u4e00\u5757\u4e3a15\u5ea6\uff09\u3002Sir Sanford Fleming\u7684\u65b9\u6cd5\u89e3\u51b3\u4e86\u4e00\u4e2a\u5168\u7403\u6027\u7684\u65f6\u95f4\u6df7\u4e71\u7684\u95ee\u9898\u3002 \u7f8e\u56fd\u94c1\u8def\u516c\u53f8\u4e8e1883\u5e7411\u670818\u65e5\u4f7f\u7528\u4e86Fleming\u63d0\u8bae\u7684\u65f6\u95f4\u65b9\u5f0f\u30021884\u5e74\u4e00\u4e2a\u56fd\u9645\u5b50\u5348\u7ebf\u4f1a\u8bae\u5728\u534e\u76db\u987f\u53ec\u5f00\uff0c\u4ed6\u7684\u76ee\u7684\u662f\u9009\u62e9\u4e00\u4e2a\u5408\u9002\u7684\u672c\u521d\u5b50\u5348\u7ebf\u3002\u5927\u4f1a\u6700\u7ec8\u9009\u5b9a\u4e86\u683c\u6797\u5a01\u6cbb\u4e3a\u6807\u51c6\u76840\u5ea6\u3002\u5c3d\u7ba1\u65f6\u533a\u88ab\u786e\u5b9a\u4e86\u4e0b\u6765\uff0c\u4f46\u662f\u5404\u4e2a\u56fd\u5bb6\u5e76\u6ca1\u6709\u7acb\u523b\u66f4\u6539\u4ed6\u4eec\u7684\u65f6\u95f4\u89c4\u8303\uff0c\u5728\u7f8e\u56fd\uff0c\u5c3d\u7ba1\u52301895\u5e74\u5df2\u7ecf\u6709\u5f88\u591a\u5dde\u5f00\u59cb\u4f7f\u7528\u6807\u51c6\u65f6\u533a\u65f6\u95f4\uff0c\u56fd\u4f1a\u76f4\u52301918\u5e74\u624d\u5f3a\u5236\u4f7f\u7528\u4f1a\u8bae\u5236\u5b9a\u7684\u65f6\u95f4\u89c4\u8303\u3002 \u4eca\u5929\u5404\u4e2a\u56fd\u5bb6\u4f7f\u7528\u7684\u662f\u4e00\u4e2aFleming\u65f6\u533a\u89c4\u8303\u7684\u4e00\u4e2a\u53d8\u79cd\uff0c\u4e2d\u56fd\u4e00\u5171\u8de8\u8d8a\u4e865\u4e2a\u65f6\u533a\uff0c\u4f46\u662f\u4f7f\u7528\u4e86\u4e00\u4e2a\u7edf\u4e00\u7684\u65f6\u95f4\u89c4\u8303\uff0c\u6bd4Coordinated Universal Time\uff08UTC\uff0c\u683c\u6797\u5a01\u5236\u65f6\u95f4\uff09\u65e98\u4e2a\u5c0f\u65f6\u3002\u4fc4\u7f57\u65af\u4e5f\u62e5\u62a4\u8fd9\u4e2a\u65f6\u533a\u89c4\u8303\uff0c\u5c3d\u7ba1\u6574\u4e2a\u56fd\u5bb6\u4f7f\u7528\u7684\u65f6\u95f4\u548c\u6807\u51c6\u65f6\u533a\u63d0\u524d\u4e861\u4e2a\u5c0f\u65f6\u3002\u6fb3\u5927\u5229\u4e9a\u4f7f\u75283\u4e2a\u65f6\u533a\uff0c\u5176\u4e2d\u4e3b\u65f6\u533a\u63d0\u524d\u4e8e\u4ed6\u6309Fleming\u89c4\u8303\u7684\u65f6\u533a\u534a\u5c0f\u65f6\u3002\u5f88\u591a\u4e2d\u4e1c\u56fd\u5bb6\u4e5f\u4f7f\u7528\u4e86\u534a\u65f6\u65f6\u533a\uff08\u5373\u4e0d\u662f\u6309\u7167Fleming\u768424\u4e2a\u6574\u6570\u65f6\u533a\uff09\u3002 \u56e0\u4e3a\u65f6\u533a\u662f\u5bf9\u7ecf\u5ea6\u8fdb\u884c\u5212\u5206\uff0c\u5728\u5357\u6781\u6216\u8005\u5317\u6781\u5de5\u4f5c\u7684\u79d1\u5b66\u5bb6\u76f4\u63a5\u4f7f\u7528\u4e86UTC\u65f6\u95f4\uff0c\u5426\u5219\u5357\u6781\u5927\u9646\u5c06\u88ab\u5206\u89e3\u621024\u4e2a\u65f6\u533a\u3002 \u65f6\u533a\u7684\u8f6c\u5316\u8868\u5982\u4e0b\uff1a UTC\uff08Coordinated Universal Time\uff09 GMT\uff08Greenwich Mean Time\uff09,\u5b9a\u4e49\u4e3aUTC\u5c0f\u65f6 BST\uff08British Summer Time\uff09,\u5b9a\u4e49\u4e3a UTC+1\u5c0f\u65f6 IST\uff08Irish Summer Time\uff09,\u5b9a\u4e49\u4e3a UTC+1\u5c0f\u65f6 WET\uff08Western Europe Time\uff09,\u5b9a\u4e49\u4e3a UTC\u5c0f\u65f6 WEST\uff08Western Europe Summer Time\uff09,\u5b9a\u4e49\u4e3a UTC+1\u5c0f\u65f6 CET\uff08Central Europe Time\uff09,\u5b9a\u4e49\u4e3a UTC+1\u5c0f\u65f6 CEST\uff08Central Europe Summer Time\uff09,\u5b9a\u4e49\u4e3a UTC+2\u5c0f\u65f6 EET\uff08Eastern Europe Time\uff09,\u5b9a\u4e49\u4e3a UTC+2\u5c0f\u65f6 EEST\uff08Eastern Europe Summer Time\uff09,\u5b9a\u4e49\u4e3a UTC+3\u5c0f\u65f6 MSK\uff08Moscow Time\uff09,\u5b9a\u4e49\u4e3a UTC+3\u5c0f\u65f6 MSD\uff08Moscow Summer Time\uff09,\u5b9a\u4e49\u4e3a UTC+4\u5c0f\u65f6 AST\uff08Atlantic Standard Time\uff09,\u5b9a\u4e49\u4e3a UTC-4\u5c0f\u65f6 ADT\uff08Atlantic Daylight Time\uff09,\u5b9a\u4e49\u4e3a UTC-3\u5c0f\u65f6 NST\uff08Newfoundland Standard Time\uff09,\u5b9a\u4e49\u4e3a UTC-3.5\u5c0f\u65f6 NDT\uff08Newfoundland Daylight Time\uff09,\u5b9a\u4e49\u4e3a UTC-2.5\u5c0f\u65f6 EST\uff08Eastern Standard Time\uff09,\u5b9a\u4e49\u4e3a UTC-5\u5c0f\u65f6 EDT\uff08Eastern Daylight Saving Time\uff09,\u5b9a\u4e49\u4e3a UTC-4\u5c0f\u65f6 CST\uff08Central Standard Time\uff09,\u5b9a\u4e49\u4e3a UTC-6\u5c0f\u65f6 CDT\uff08Central Daylight Saving Time\uff09,\u5b9a\u4e49\u4e3a UTC-5\u5c0f\u65f6 MST\uff08Mountain Standard Time\uff09,\u5b9a\u4e49\u4e3a UTC-7\u5c0f\u65f6 MDT\uff08Mountain Daylight Saving Time\uff09,\u5b9a\u4e49\u4e3a UTC-6\u5c0f\u65f6 PST\uff08Pacific Standard Time\uff09,\u5b9a\u4e49\u4e3a UTC-8\u5c0f\u65f6 PDT\uff08Pacific Daylight Saving Time\uff09,\u5b9a\u4e49\u4e3a UTC-7\u5c0f\u65f6 HST\uff08Hawaiian Standard Time\uff09,\u5b9a\u4e49\u4e3a UTC-10\u5c0f\u65f6 AKST\uff08Alaska Standard Time\uff09,\u5b9a\u4e49\u4e3a UTC-9\u5c0f\u65f6 AKDT\uff08Alaska Standard Daylight Saving Time\uff09,\u5b9a\u4e49\u4e3a UTC-8\u5c0f\u65f6 AEST\uff08Australian Eastern Standard Time\uff09,\u5b9a\u4e49\u4e3a UTC+10\u5c0f\u65f6 AEDT\uff08Australian Eastern Daylight Time\uff09,\u5b9a\u4e49\u4e3a UTC+11\u5c0f\u65f6 ACST\uff08Australian Central Standard Time\uff09,\u5b9a\u4e49\u4e3a UTC+9.5\u5c0f\u65f6 ACDT\uff08Australian Central Daylight Time\uff09, \u5b9a\u4e49\u4e3a UTC+10.5\u5c0f\u65f6 AWST\uff08Australian Western Standard Time\uff09, \u5b9a\u4e49\u4e3a UTC+8\u5c0f\u65f6 \u4e0b\u9762\u7ed9\u51fa\u4e86\u4e00\u4e9b\u65f6\u95f4\uff0c\u8bf7\u5728\u4e0d\u540c\u65f6\u533a\u4e4b\u95f4\u8fdb\u884c\u8f6c\u5316\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u8f93\u5165<\/h4>\n\n\n\n<p>\u8f93\u5165\u7684\u7b2c\u4e00\u884c\u5305\u542b\u4e86\u4e00\u4e2a\u6574\u6570N\uff0c\u8868\u793a\u6709N\u7ec4\u6d4b\u8bd5\u6570\u636e\u3002\u63a5\u4e0b\u6765N\u884c\uff0c\u6bcf\u4e00\u884c\u5305\u62ec\u4e00\u4e2a\u65f6\u95f4\u548c\u4e24\u4e2a\u65f6\u533a\u7684\u7f29\u5199\uff0c\u5b83\u4eec\u4e4b\u95f4\u7528\u7a7a\u683c\u9694\u5f00\u3002\u65f6\u95f4\u7531\u6807\u51c6\u7684a.m.\/p.m \u7ed9\u51fa\u3002midnight\u8868\u793a\u665a\u4e0a12\u70b9\uff0812:00 a.m.\uff09\uff0cnoon\u8868\u793a\u4e2d\u534812\u70b9\uff0812:00 p.m.\uff09\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u8f93\u51fa<\/h4>\n\n\n\n<p>\u5047\u8bbe\u8f93\u5165\u884c\u7ed9\u51fa\u7684\u65f6\u95f4\u662f\u5728\u7b2c\u4e00\u4e2a\u65f6\u533a\u4e2d\u7684\u6807\u51c6\u65f6\u95f4\uff0c\u8981\u6c42\u8f93\u51fa\u8fd9\u4e2a\u65f6\u95f4\u5728\u7b2c\u4e8c\u4e2a\u65f6\u533a\u4e2d\u7684\u6807\u51c6\u65f6\u95f4\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u6837\u4f8b\u8f93\u5165 \u590d\u5236<\/h4>\n\n\n\n<p>&nbsp;4<br>&nbsp;noon HST CEST<br>&nbsp;11:29 a.m. EST GMT<br>&nbsp;6:01 p.m. CST UTC<br>&nbsp;12:40 p.m. ADT MSK<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u6837\u4f8b\u8f93\u51fa \u590d\u5236<\/h4>\n\n\n\n<p>&nbsp;midnight<br>&nbsp;4:29 p.m.<br>&nbsp;12:01 a.m.<br>&nbsp;6:40 p.m.<\/p>\n<\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">\u601d\u8def\uff1a<\/h3>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<ol class=\"wp-block-list\">\n<li><strong>\u89e3\u6790\u65f6\u95f4<\/strong>\uff1a\u5c06\u7ed9\u5b9a\u7684\u65f6\u95f4\uff08\u53ef\u80fd\u662f noon \u548c midnight \u6216 \u6807\u51c6\u65f6\u95f4\u683c\u5f0f\uff09\u8f6c\u6362\u4e3a24\u5c0f\u65f6\u5236\u7684\u65f6\u95f4\u3002<\/li>\n\n\n\n<li><strong>\u67e5\u627e\u65f6\u533a\u504f\u79fb\u91cf<\/strong>\uff1a\u6839\u636e\u8f93\u5165\u548c\u8f93\u51fa\u65f6\u533a\u627e\u5230\u5b83\u4eec\u76f8\u5bf9\u4e8eUTC\u7684\u504f\u79fb\u91cf\u3002<\/li>\n\n\n\n<li><strong>\u8ba1\u7b97\u65b0\u65f6\u95f4<\/strong>\uff1a\u4f7f\u7528\u65f6\u533a\u504f\u79fb\u91cf\u6765\u8ba1\u7b97\u76ee\u6807\u65f6\u533a\u4e2d\u7684\u65f6\u95f4\u3002<\/li>\n\n\n\n<li><strong>\u683c\u5f0f\u5316\u8f93\u51fa<\/strong>\uff1a\u5c06\u8ba1\u7b97\u5f97\u5230\u7684\u65f6\u95f4\u8f6c\u6362\u56dea.m.\/p.m.\u683c\u5f0f\uff0c\u5305\u62ec\u5904\u7406\u7279\u6b8a\u7684 noon \u548c midnight \u3002<\/li>\n<\/ol>\n<\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">\u4ee3\u7801C\u8bed\u8a00\uff1a<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>#include &lt;stdio.h>\r\n#include &lt;string.h>\r\n\r\n\/\/ \u65f6\u533a\u504f\u79fb\u91cf\uff08\u4ee5\u5206\u949f\u4e3a\u5355\u4f4d\uff09\r\nint getTimeZoneOffset(char timeZone&#91;]) {\r\n    if (strcmp(timeZone, \"UTC\") == 0) return 0;\r\n    if (strcmp(timeZone, \"GMT\") == 0) return 0;\r\n    if (strcmp(timeZone, \"BST\") == 0 || strcmp(timeZone, \"IST\") == 0 || strcmp(timeZone, \"WEST\") == 0) return 60;\r\n    if (strcmp(timeZone, \"WET\") == 0) return 0;\r\n    if (strcmp(timeZone, \"CET\") == 0) return 60;\r\n    if (strcmp(timeZone, \"CEST\") == 0) return 120;\r\n    if (strcmp(timeZone, \"EET\") == 0) return 120;\r\n    if (strcmp(timeZone, \"EEST\") == 0) return 180;\r\n    if (strcmp(timeZone, \"MSK\") == 0) return 180;\r\n    if (strcmp(timeZone, \"MSD\") == 0) return 240;\r\n    if (strcmp(timeZone, \"AST\") == 0) return -240;\r\n    if (strcmp(timeZone, \"ADT\") == 0) return -180;\r\n    if (strcmp(timeZone, \"NST\") == 0) return -210;\r\n    if (strcmp(timeZone, \"NDT\") == 0) return -150;\r\n    if (strcmp(timeZone, \"EST\") == 0) return -300;\r\n    if (strcmp(timeZone, \"EDT\") == 0) return -240;\r\n    if (strcmp(timeZone, \"CST\") == 0) return -360;\r\n    if (strcmp(timeZone, \"CDT\") == 0) return -300;\r\n    if (strcmp(timeZone, \"MST\") == 0) return -420;\r\n    if (strcmp(timeZone, \"MDT\") == 0) return -360;\r\n    if (strcmp(timeZone, \"PST\") == 0) return -480;\r\n    if (strcmp(timeZone, \"PDT\") == 0) return -420;\r\n    if (strcmp(timeZone, \"HST\") == 0) return -600;\r\n    if (strcmp(timeZone, \"AKST\") == 0) return -540;\r\n    if (strcmp(timeZone, \"AKDT\") == 0) return -480;\r\n    if (strcmp(timeZone, \"AEST\") == 0) return 600;\r\n    if (strcmp(timeZone, \"AEDT\") == 0) return 660;\r\n    if (strcmp(timeZone, \"ACST\") == 0) return 570;\r\n    if (strcmp(timeZone, \"ACDT\") == 0) return 630;\r\n    if (strcmp(timeZone, \"AWST\") == 0) return 480;\r\n    return 0;\r\n}\r\n\r\n\/\/\u5c0612\u5c0f\u65f6\u5236\u65f6\u95f4\u8f6c\u6362\u4e3a\u5206\u949f\r\nint convertTimeToMinutes(char time&#91;],char meridiem) {\r\n    int hours,minutes;\r\n    if (strcmp(time,\"noon\") == 0) return 12 * 60;\r\n    if (strcmp(time,\"midnight\") == 0) return 0;\r\n    sscanf(time,\"%d:%d\",&amp;hours,&amp;minutes);\r\n    if (meridiem == 'p' &amp;&amp; hours != 12) hours += 12;\r\n    if (meridiem == 'a' &amp;&amp; hours == 12) hours = 0;\r\n    return hours * 60 + minutes;\r\n}\r\n\r\n\/\/\u5c06\u5206\u949f\u8f6c\u6362\u4e3a12\u5c0f\u65f6\u5236\u65f6\u95f4\r\nvoid convertMinutesToTime(int minutes, char time&#91;]) {\r\n    int hours = (minutes \/ 60) % 24;\r\n    int mins = minutes % 60;\r\n    char meridiem&#91;] = \"a.m.\";\r\n    if (hours >= 12) {\r\n        strcpy(meridiem,\"p.m.\");\r\n        if (hours > 12) hours -= 12;\r\n    }\r\n    if (hours == 0) hours = 12;\r\n    if (hours == 12 &amp;&amp; mins == 0 &amp;&amp; strcmp(meridiem,\"p.m.\") == 0) strcpy(time, \"noon\");\r\n    else if (hours == 12 &amp;&amp; mins == 0 &amp;&amp; strcmp(meridiem,\"a.m.\") == 0) strcpy(time, \"midnight\");\r\n    else sprintf(time,\"%d:%02d %s\",hours,mins,meridiem);\r\n}\r\n\r\nint main() {\r\n    int n;\r\n    scanf(\"%d\", &amp;n);\r\n    char inputTime&#91;10],fromTimeZone&#91;10],toTimeZone&#91;10],meridiem&#91;5],outputTime&#91;20];\r\n\r\n    for (int i = 0; i &lt; n; i++) {\r\n        scanf(\"%s\",inputTime);\r\n        if (strcmp(inputTime,\"noon\") == 0 || strcmp(inputTime,\"midnight\") == 0) {\r\n            strcpy(meridiem,\"a.m.\");\r\n        } else {\r\n            scanf(\"%s\",meridiem); \/\/\u8bfb\u53d6a.m.\u6216p.m.\r\n        }\r\n        scanf(\"%s %s\",fromTimeZone,toTimeZone);\r\n\t\t\/\/\u6c42\u51fa\u5206\u949f\u6570\r\n        int fromOffset = getTimeZoneOffset(fromTimeZone);\r\n        int toOffset = getTimeZoneOffset(toTimeZone);\r\n        \/\/\u8ba1\u7b97\u65f6\u95f4\u5dee\r\n        int timeDifference = toOffset - fromOffset;\r\n        \/\/\u8f93\u5165\u7684\u6807\u51c6\u65f6\u95f4\r\n        int inputMinutes = convertTimeToMinutes(inputTime,meridiem&#91;0]);\r\n        \/\/\u8f93\u51fa\u7684\u6807\u51c6\u65f6\u95f4\r\n        int outputMinutes = (inputMinutes + timeDifference + 1440) % 1440;\r\n        convertMinutesToTime(outputMinutes,outputTime);\r\n        \r\n        printf(\"%s\\n\",outputTime);\r\n    }\r\n\r\n    return 0;\r\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"http:\/\/39.101.69.154\/problem.php?id=1172\">6204 \u5e78\u8fd0\u6708<\/a><\/h2>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<h4 class=\"wp-block-heading\">\u9898\u76ee\u63cf\u8ff0<\/h4>\n\n\n\n<p>\u4f60\u662f\u4e0d\u662f\u5f88\u5947\u602a\uff0c\u4e00\u5e74\u4e3a\u5565365\u5929\u800c\u4e0d\u662f400\u5929\uff1f\u4e3a\u55658\u6708\u4efd\u662f31\u5929\uff0c\u4f46\u662f2\u6708\u4efd\u5374\u53ea\u670928\u5929\uff1f\u4e3a\u5565\u4e00\u4e2a\u661f\u671f\u662f7\u5929\u800c\u4e0d\u662f6\u5929\uff1f\u53e4\u65f6\u5019\u7684\u4eba\u4eec\u4e5f\u662f\u4f7f\u7528\u548c\u6211\u4eec\u73b0\u5728\u4e00\u6837\u7684\u5386\u6cd5\u5417\uff1f\u5173\u4e8e\u8fd9\u4e9b\u95ee\u9898\u6709\u5f88\u591a\u6709\u8da3\u7684\u731c\u6d4b\u4e86\u3002\u73b0\u5728\uff0c\u6211\u4eec\u5c06\u544a\u8bc9\u4f60\u5176\u4e2d\u7684\u4e00\u4e2a\u6545\u4e8b\u4ee5\u4fbf\u5e2e\u52a9\u4f60\u89e3\u91ca\u8fd9\u4e9b\u95ee\u9898\u3002\u501f\u52a9\u4e8e\u6545\u4e8b\u91cc\u7684\u4fe1\u606f\uff0c\u4f60\u53ef\u4ee5\u4f7f\u7528\u8ba1\u7b97\u673a\u6765\u89e3\u51b3\u4e00\u4e2a\u6709\u8da3\u7684\u95ee\u9898\u3002\u5173\u4e8e\u5386\u6cd5\u6709\u5f88\u591a\u7406\u8bba\uff0c\u8bbe\u7f6e\u8fd9\u4e2a\u95ee\u9898\u53ea\u662f\u4ee5\u7b80\u5355\u7684\u65b9\u5f0f\u544a\u8bc9\u4f60\u5176\u4e2d\u7684\u4e00\u4e2a\u7406\u8bba\u3002 \u7eb5\u89c2\u5386\u53f2\uff0c\u4eba\u4eec\u901a\u8fc7\u89c2\u5bdf\u5730\u7403\u3001\u6708\u4eae\u548c\u592a\u9633\u95f4\u7684\u76f8\u5bf9\u4f4d\u7f6e\u6765\u8bb0\u5f55\u65f6\u95f4\u3002\u5730\u7403\u81ea\u8f6c\u4e00\u5708\u7684\u65f6\u95f4\u5c31\u662f\u4e00\u5929\u3002\u5730\u7403\u56f4\u7ed5\u592a\u9633\u8f6c\u4e00\u5708\u7684\u65f6\u95f4\u8bb0\u4e3a\u4e00\u5e74\uff0c\u5b9e\u9645\u4e0a\u9700\u8981365.242190 \u5929\u3002\u4e3a\u4e86\u5b9e\u7528\uff0c\u4e00\u4e2a\u5386\u6cd5\u5e74\u9700\u8981\u4e00\u4e2a\u6574\u6570\u5929\u6570\u3002\u56e0\u6b64\u4eba\u4eec\u9700\u8981\u589e\u52a0\u95f0\u5929\uff0c\u4ee5\u4fdd\u6301\u5386\u6cd5\u548c\u592a\u9633\u540c\u6b65\u3002\u5982\u679c\u4f60\u4fdd\u6301\u4e00\u5e74365\u5929\uff0c\u90a3\u4e48\u4f60\u9700\u8981\u5728\u5dee\u4e0d\u591a\u6bcf4\u5e74\u4e00\u4e2a\u95f0\u5e74\u4e2d\u589e\u52a01\u5929\u5de6\u53f3\u3002\u7136\u800c\uff0c\u8fd9\u79cd\u5386\u6cd5\u5e76\u4e0d\u80fd\u548c\u5730\u7403\u56f4\u7ed5\u592a\u9633\u65cb\u8f6c\u5b8c\u5168\u4fdd\u6301\u4e00\u81f4\uff0c\u56e0\u4e3a\u5e73\u5747\u4e0b\u6765\u6bcf\u5e74\u662f365.25\u5929\uff0c\u8fd9\u4e2a\u8981\u6bd4\u5b9e\u9645\u7684\u8981\u591a\u4e00\u70b9\u70b9\u65f6\u95f4\u3002 \u8fd9\u53d6\u51b3\u4e8e\u4f60\u5982\u4f55\u51c6\u786e\u6d4b\u91cf\u5730\u7403\u7ed5\u592a\u9633\u516c\u8f6c\u7684\u5468\u671f\uff0c\u4f60\u9700\u8981\u521b\u9020\u4e0d\u540c\u7684\u95f0\u5e74\u516c\u5f0f\u3002\u4e00\u4e9b\u897f\u65b9\u8457\u540d\u7684\u5386\u6cd5\u7cfb\u7edf\u5df2\u7ecf\u88ab\u53d1\u660e\uff0c\u9664\u4e86\u66f4\u590d\u6742\u7684\u4e1c\u65b9\u5386\u6cd5\u7cfb\u7edf\u3002\u4e3a\u4e86\u8282\u7701\u7a0b\u5e8f\u5458\u7684\u52aa\u529b\uff0c\u6211\u4eec\u5c06\u4e0d\u8ba8\u8bba\u4e1c\u65b9\u5386\u6cd5\u7cfb\u7edf\uff0c\u5982\u4e2d\u56fd\u7684\u519c\u5386\u3002\u6211\u4eec\u5c06\u4e13\u6ce8\u4e8e\u897f\u65b9\u4e3b\u8981\u7684\u5386\u6cd5\u7cfb\u7edf\u3002\u6700\u65e9\u53ef\u80fd\u662f\u51ef\u6492\u5728\u516c\u5143\u524d46\u5e74\u5efa\u7acb\u7684\u5112\u7565\u5386\u3002\u5b83\u4e0d\u591f\u51c6\u786e\uff0c\u6bcf128\u5e74\u5c06\u4f11\u606f\u4e00\u5929\u3002\u4e0b\u4e00\u4e2a\u662f\u5929\u6587\u5112\u7565\u5386\uff0c\u7531\u7ea6\u745f\u592b\u2022\u5c24\u65af\u56fe\u65af\u51ef\u5229\u683c\u572816\u4e16\u7eaa\u524d\u540e\u53d1\u660e\u7684\u3002\u8fd9\u4e24\u4e2a\u5386\u6cd5\u90fd\u6709\u4e2a\u7b80\u5355\u7684\u516c\u5f0f\u7528\u6765\u786e\u5b9a\u54ea\u4e00\u5e74\u662f\u95f0\u5e74\u3002 \u4e0b\u4e00\u4e2a\u4e3b\u8981\u5386\u6cd5\u7cfb\u7edf\u662f\u57281582\u5e74\u53d1\u660e\u7684\u88ab\u79f0\u4e3a\u516c\u5386\uff0c\u56e0\u4e3a\u4eba\u4eec\u7ec8\u4e8e\u6ce8\u610f\u5230\u4e86\u5730\u7403\u7684\u8f68\u9053\u548c\u65e5\u5386\u540c\u6b65\u3002\u5728\u8fd9\u4e2a\u7cfb\u7edf\u4e2d\uff0c\u95f0\u5e74\u6bcf100\u5e74\u88ab\u4e22\u5f03\u4e00\u6b21\uff0c\u9664\u975e\u6b63\u597d\u662f400\u5e74\u3002\u901a\u8fc7\u505a\u8fd9\u4e2a\u4fee\u6539\uff0c\u5728\u4e00\u4e2a\u65e5\u5386\u5e74\u5ea6\u7684\u5e73\u5747\u5929\u6570\u4e3a365.2425\u3002\u6ce8\u610f\uff0c\u8be5\u7cfb\u7edf\u8fd8\u4e0d\u591f\u5b8c\u5584\uff0c\u6bcf3289\u5e74\u8fd8\u4f1a\u591a\u4e00\u5929\u3002\u8fd8\u6709\u5176\u4ed6\u66f4\u591a\u7684\u4fee\u6539\u5efa\u8bae\uff0c\u5982\u4e00\u4e2a\u7531\u5929\u6587\u5b66\u5bb6\u7ea6\u7ff0\u2022\u8d6b\u6b47\u5c14\uff0c\u5e0c\u814a\u4e1c\u6b63\u6559\uff0c\u5e76\u5728\u7f8e\u56fd\u6d77\u519bSPAWAR\u7ec4\u3002\u4e3a\u4e86\u7b80\u4fbf\u8d77\u89c1\uff0c\u4eba\u4eec\u8fd8\u662f\u91c7\u7528\u4e86\u516c\u5386\u5236\uff0c\u867d\u7136\u5b83\u53ef\u80fd\u4e0d\u662f\u5b8c\u7f8e\u7684\u3002 \u4ee5\u4e0b\u662f\u516c\u5386\u7684\u8ba1\u7b97\u95f0\u5e74\u516c\u5f0f\u3002\u5bf9\u4e8ey\u5e74\uff0cy&gt;1582\u4e14y\u22601700\uff0c\u5f53\u4e14\u4ec5\u5f53\u662f\u6ee1\u8db3\u4e0b\u9762\u7684\u6761\u4ef6\u662fy\u5c31\u662f\u95f0\u5e74\uff1a \u2022y\u80fd\u88ab4\u6574\u9664\uff0c\u800c\u4e14 \u2022y\u4e0d\u80fd\u88ab100\u6574\u9664\u9664\u975e\u5b83\u80fd\u88ab400\u6574\u9664 \u82e50 &lt; y &lt; 1582,\u5f53\u4e14\u4ec5\u5f53\u6ee1\u8db3\u4e0b\u9762\u7684\u6761\u4ef6\u5b83\u624d\u662f\u95f0\u5e74\uff1a \u2022y\u80fd\u88ab4\u6574\u9664 \u56e0\u6b64\uff0c4\u5e74\u662f\u95f0\u5e74\uff0c100\u5e74\u662f\u95f0\u5e74\uff0c1900\u5e74\u4e0d\u662f\u95f0\u5e74\uff0c\u4f46\u662f2000\u662f\u95f0\u5e74\u3002\u95f0\u5e74\u6709366\u5929\uff0c\u989d\u5916\u7684\u90a3\u5929\u5c31\u662f\u4e8c\u670829\u65e5\u3002\u975e\u95f0\u5e74\u6709365\u5929\u3002 \u5728\u4f60\u7684\u8ba1\u7b97\u4e2d\uff0c\u4f60\u53ef\u80fd\u8fd8\u9700\u8981\u89c2\u5bdf\u6709\u5173\u516c\u5386\u7684\u4ee5\u4e0b\u4e8b\u5b9e\u3002\u5728\u897f\u65b9\u4e16\u754c\u91cc\uff0c\u8bb8\u591a\u65e5\u5386\u7cfb\u7edf\uff0c\u88ab\u540c\u65f6\u7528\u5728\u4e0d\u540c\u7684\u9886\u57df\u91cc\u3002\u76ee\u524d\u897f\u65b9\u7684\u5386\u6cd5\u7cfb\u7edf\uff0c\u4e3b\u8981\u9075\u5faa\u4e86\u683c\u5229\u9ad8\u91cc\u5386\u6cd5\uff0c\u82f1\u56fd\u57281752\u5e749\u67083\u65e5\u901a\u8fc7\u4e86\u6240\u8c13\u7684\u516c\u5386\u6539\u9769\u3002\u7531\u4e8e\u4f17\u591a\u539f\u56e0\uff0c\u6211\u4eec\u76f8\u4fe1\u4f60\u4e0d\u60f3\u9605\u8bfb\u8fd9\u4e2a\u95ee\u9898\u7684\u63cf\u8ff0\u3002\u4e3a\u4e86\u4e0d\u91cd\u5199\u5386\u53f2\uff0c\u4eba\u4eec\u51b3\u5b9a\u6d88\u9664\u4ece1752\u5e749\u67083\u65e5\u5f00\u59cb\u768411\u5929\u3002\u4e5f\u5c31\u662f\u8bf4\uff0c\u5728\u516c\u5386\u4e2d\uff0c\u57281752\u5e749\u67083\u65e5\u52301752\u5e749\u670813\u65e5\u4e4b\u95f4\u768411\u5929\u662f\u6ca1\u6709\u7684\u3002\u9700\u8981\u6ce8\u610f\u7684\u662f\u7f57\u9a6c\u57281582\u5e74\u5f00\u59cb\u91c7\u7528\u516c\u5386\u3002\u6b64\u5916\uff0c\u7531\u4e8e\u5386\u53f2\u539f\u56e0\uff0c1700\u5e74\u88ab\u5ba3\u5e03\u4e3a\u516c\u5386\u95f0\u5e74\u3002\u5173\u4e8e\u516c\u5386\u8fd8\u6709\u5176\u4ed6\u7684\u53d8\u79cd\uff0c\u4f46\u662f\uff0c\u6211\u4eec\u5c06\u4f7f\u7528\u4e0a\u8ff0\u7684\u5b9a\u4e49\u3002\u4e0d\u540c\u7684\u6709\u5173\u516c\u5386\u5236\u6709\u5176\u5b83\u7684\u53d8\u5316\uff0c\u4f46\u662f\uff0c\u6211\u4eec\u5c06\u4f7f\u7528\u5982\u4e0a\u6240\u5b9a\u4e49\u7684\u4e00\u65b9\u3002 \u9634\u5386\u4e00\u4e2a\u6708\u88ab\u5b9a\u4e49\u4e3a\u8fde\u7eed\u7684\u65b0\u7684\u6216\u6ee1\u6708\u4e4b\u95f4\u7684\u5e73\u5747\u65f6\u95f4\u662f29.531\u5929\u3002\u4eba\u4eec\u89c2\u5bdf\u5230\u5728\u4e00\u5e74\u5e73\u574712.368\u6ee1\u6708\u3002\u4e0d\u5e78\u7684\u662f\uff0c\u8fd9\u4e0d\u662f\u6574\u6570\u4e2a\u5929\u3002\u56e0\u6b64\uff0c\u5982\u679c\u6211\u4eec\u4e00\u5e74\u670912\u4e2a\u6708\uff0c\u6bcf\u670830\u5929\uff0c\u6211\u4eec\u6bcf\u5e74\u9700\u8981\u65b0\u589e\u51e0\u5929\u3002\u4e3a\u4e86\u89e3\u51b3\u8fd9\u4e2a\u9ebb\u70e6\uff0c\u4e00\u79cd\u66ff\u6362\u7684\u65b9\u6cd5\u5c31\u662f\u4e00\u4e2a\u6708\u7684\u5929\u6570\u4ecb\u4e8e30\u548c31\u4e4b\u95f4\u3002\u7136\u800c\uff0c\u8fd9\u5c31\u4f1a\u5f15\u5165\u4e00\u4e2a\u989d\u5916\u7684\u4e00\u5929\u3002\u7ecf\u8fc7\u591a\u6b21\u4e89\u8bba\uff0c\u516c\u5386\u6700\u7ec8\u7ed9\u51fa\u5728\u975e\u95f0\u5e74\u4e2d\u6bcf\u4e2a\u6708\u7684\u5929\u6570\u5206\u522b\u662f31\uff0c28\uff0c31\uff0c30\uff0c31\uff0c30\uff0c31\uff0c31\uff0c30\uff0c31\uff0c30\uff0c31\uff0c\u5206\u522b\u4ece1\u6708\u523012\u6708\u3002\u95f0\u5e74\u4e2d\u591a\u7684\u90a3\u4e00\u5929\u6dfb\u52a0\u52302\u6708\u4efd\u4e2d\u3002\u5404\u4e2a\u6708\u4efd\u7684\u540d\u79f0\u5206\u522b\u4e3a\uff1aJanuary, February, March, April, May, June, July, August, September, October, November\u548cDecember\u3002\u8fd9\u4e9b\u540d\u79f0\u4e5f\u5f88\u6709\u610f\u601d\uff0c\u6709\u5f88\u591a\u4e0e\u5b83\u4eec\u76f8\u5173\u7684\u6545\u4e8b\u3002\u4f8b\u5982\uff0c\u7f57\u9a6c\u5143\u8001\u9662\u4efb\u547d\u76847\u6708\u4e3aJuly\uff0c\u4ee5\u8868\u5f70\u51ef\u6492\u4e3a\u6539\u9769\u4ed6\u4eec\u7684\u65e5\u5386\u800c\u505a\u51fa\u7684\u8d21\u732e\u3002\u7136\u800c\uff0c\u6211\u4eec\u4e5f\u6ca1\u6709\u65f6\u95f4\u5728\u8fd9\u91cc\u8c08\u8bba\u5b83\u4eec\u3002 \u5728\u53e4\u4ee3\uff0c\u4e00\u4e2a\u661f\u671f\u53ef\u80fd\u6709\u4e0d\u540c\u7684\u5929\u6570\uff0c\u4f8b\u5982\u4ece4\u523010\u5929\u3002\u5728\u516c\u5386\u7cfb\u7edf\u4e2d\uff0c\u4e00\u4e2a\u661f\u671f\u5927\u81f4\u76f8\u5f53\u4e8e\u6708\u7403\u7684\u5b63\u76f8\uff0c\u5373\u4eba\u4eec\u53ef\u4ee5\u6e05\u695a\u5730\u89c2\u5bdf\u5230\u5176\u4f4d\u7f6e\u7684\u65f6\u95f4\u3002\u56e0\u6b64\uff0c\u4eba\u4eec\u53ef\u4ee5\u5f88\u5bb9\u6613\u5730\u6d4b\u91cf\u4e00\u4e2a\u661f\u671f\u3002\u6b64\u5916\uff0c\u7531\u4e8e\u4e00\u4e9b\u5176\u4ed6\u539f\u56e0\uff0c\u4f8b\u5982\u5b97\u6559\uff0c\u6700\u7ec8\u88ab\u5b9a\u4e49\u4e3a7\u5929\u3002\u8fd97\u5929\u7684\u540d\u5b57\u5206\u522b\u4e3a\uff1aSunday, Monday, Tuesday, Wednesday, Thursday, Friday \u548c Saturday\u3002\u4e5f\u90fd\u6709\u7740\u6709\u8da3\u7684\u6545\u4e8b\u3002\u7136\u800c\uff0c\u6211\u4eec\u4e5f\u6ca1\u6709\u65f6\u95f4\u5728\u8fd9\u91cc\u8c08\u8bba\u5b83\u4eec\u3002 \u7eb5\u89c2\u5386\u53f2\uff0c\u4eba\u4eec\u76f8\u4fe1\u661f\u661f\u7684\u76f8\u5bf9\u4f4d\u7f6e\u53ef\u4ee5\u51b3\u5b9a\u81ea\u5df1\u7684\u547d\u8fd0\u3002\u8fd9\u4e5f\u662f\u4e2a\u771f\u5b9e\u7684\u6545\u4e8b\uff0c\u4e00\u4e9b\u4eba\u4f4f\u5728\u4e00\u4e2a\u53ebT\u7684\u5c0f\u5c9b\u4e0a\u3002\u5728T\u5c9b\uff0c\u4eba\u4eec\u6bcf\u5468\u4ece\u5468\u4e00\u5de5\u4f5c\u81f3\u5468\u4e94\uff0c\u5468\u516d\u3001\u5468\u65e5\u4eab\u53d7\u4e24\u5929\u7684\u5047\u671f\uff0c\u9664\u6b64\u4e4b\u5916\u6ca1\u6709\u5176\u4ed6\u5047\u671f\u3002\u6709\u4e2a\u53e4\u8001\u7684\u4f20\u8bf4\uff0c\u6709\u8fd9\u6837\u4e00\u4e2a\u5e78\u8fd0\u6708\uff0c\u5982\u679c\u5728\u8fd9\u4e2a\u6708\u7684\u6700\u540e\u4e00\u4e2a\u5de5\u4f5c\u65e5\u6070\u597d\u662f\u661f\u671f\u4e94\u7684\u8bdd\uff0c\u90a3\u4e48\u8fd9\u4e2a\u6708\u5c31\u88ab\u79f0\u4e3a\u5e78\u8fd0\u7684\u3002\u4e3e\u4f8b\u6765\u8bf4\uff0c2006\u5e749\u6708\u4efd\u7684\u6700\u540e\u4e00\u4e2a\u5de5\u4f5c\u65e5\u662f9\u670829\u65e5\uff0c\u8fd9\u5929\u6b63\u597d\u662f\u661f\u671f\u4e94\u3002\u56e0\u6b64\uff0c\u5b83\u662f\u5e78\u8fd0\u7684\u30022006\u5e747\u6708\u7684\u6700\u540e\u4e00\u4e2a\u5de5\u4f5c\u65e5\u662f2006\u5e747\u670831\u65e5\uff0c\u8fd9\u5929\u662f\u661f\u671f\u4e00\uff0c\u56e0\u6b64\u5b83\u4e0d\u662f\u5e78\u8fd0\u7684\u30022006\u5e748\u6708\u7684\u6700\u540e\u4e00\u4e2a\u5de5\u4f5c\u65e5\u662f8\u670831\u65e5\uff0c\u8fd9\u5929\u662f\u661f\u671f\u56db\u3002\u56e0\u6b64\uff0c\u5b83\u4e5f\u4e0d\u662f\u5e78\u8fd0\u7684\u3002\u636e\u8bf4\uff0c\u5982\u679c\u4e00\u4e2a\u4eba\u5728\u5e78\u8fd0\u6708\u91cc\u6bcf\u5929\u53ea\u5403\u852c\u83dc\u7684\u8bdd\uff0c\u4ed6\/\u5979\u5c06\u62e5\u6709\u8d22\u5bcc\u3002 \u6b64\u5916\uff0c\u6839\u636e\u53e6\u5916\u7684\u4f20\u8bf4\uff0c\u5982\u679c\u4e00\u4e2a\u6708\u7684\u7b2c\u4e00\u4e2a\u5de5\u4f5c\u65e5\u6070\u597d\u662f\u661f\u671f\u4e00\u7684\u8bdd\uff0c\u90a3\u4e48\u8fd9\u4e2a\u6708\u5c31\u88ab\u79f0\u4e3a\u4e00\u4e2a\u597d\u6708\u3002\u4e3e\u4f8b\u6765\u8bf4\uff0c2006\u5e747\u6708\u7684\u7b2c\u4e00\u4e2a\u5de5\u4f5c\u65e5\u4e3a7\u67083\u65e5\uff0c\u8fd9\u662f\u5468\u4e00\u3002\u56e0\u6b64\uff0c\u5b83\u662f\u597d\u6708\u3002 2006\u5e7410\u6708\u7684\u7b2c\u4e00\u4e2a\u5de5\u4f5c\u65e5\u662f10\u67082\uff0c\u8fd9\u662f\u5468\u4e00\u3002\u56e0\u6b64\uff0c\u5b83\u4e5f\u662f\u597d\u6708\u3002 2006\u5e748\u6708\u7684\u7b2c\u4e00\u4e2a\u5de5\u4f5c\u65e5\u4e3a2006\u5e748\u67081\u65e5\uff0c\u8fd9\u662f\u5468\u4e8c\u3002\u56e0\u6b64\uff0c\u5b83\u4e0d\u662f\u597d\u6708\u7684\u30022006\u5e749\u6708\u7684\u7b2c\u4e00\u4e2a\u5de5\u4f5c\u65e5\u662f9\u67081\u65e5\uff0c\u8fd9\u662f\u661f\u671f\u4e94\u3002\u56e0\u6b64\uff0c\u5b83\u4e5f\u4e0d\u662f\u597d\u6708\u3002\u636e\u8bf4\uff0c\u5982\u679c\u4e00\u4e2a\u4eba\u5728\u597d\u6708\u7684\u6bcf\u5929\u665a\u4e0a10\u70b9\u524d\u4e0a\u5e8a\u7761\u89c9\u7684\u8bdd\uff0c\u4ed6\/\u5979\u5c06\u662f\u975e\u5e38\u5065\u5eb7\u7684\u3002\u4e00\u4e2a\u6708\u53ef\u80fd\u540c\u65f6\u4e3a\u597d\u6708\u548c\u5e78\u8fd0\u6708\u3002 \u7ed9\u5b9a\u4e00\u4e2a\u65f6\u95f4\u6bb5\uff0c\u4f60\u7684\u4efb\u52a1\u5c31\u662f\u7ed9\u51fa\u5728\u8fd9\u4e2a\u65f6\u95f4\u6bb5\u5185\u597d\u6708\u548c\u5e78\u8fd0\u6708\u7684\u6570\u91cf\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u8f93\u5165<\/h4>\n\n\n\n<p>\u7b2c\u4e00\u884c\u662f\u6d4b\u8bd5\u6570\u636e\u7684\u7ec4\u6570w,1 \u2264 w \u2264 10. \u7136\u540e\u662fw\u7ec4\u6d4b\u8bd5\u6570\u636e\u4f9d\u6b21\u7f57\u5217\u51fa\u6765\u3002\u6bcf\u4e2a\u6d4b\u8bd5\u6570\u636e\u5305\u62ec1\u884c\uff0c\u67094\u4e2a\u6570\u5b57\u6784\u6210\uff1a Ys Ms Ye Me \u4e24\u4e24\u4e4b\u95f4\u7a7a\u683c\u9694\u5f00\uff0cYs\u662f\u4e00\u4e2a\u6574\u6570, 0 &lt; Ys &lt; 10000\uff0c\u8fd9\u662f\u8d77\u59cb\u7684\u5e74\u4efd\uff0cMs\u4e5f\u662f\u4e2a\u6574\u6570, 1 \u2264 Ms \u2264 12\uff0c\u8868\u793a\u8d77\u59cb\u6708\u4efd\u3002Ye \u662f\u4e00\u4e2a\u6574\u6570, 0 &lt; Ye &lt; 10000\uff0c\u8868\u793a\u7ed3\u675f\u7684\u5e74\u4efd\uff0c Me \u662f\u6574\u6570\uff0c1 \u2264 Me \u2264 12\uff0c\u8868\u793a\u7ed3\u675f\u7684\u6708\u4efd\u3002 \u6ce8\u610f\uff1aMs,Ys\u8868\u793a\u7684\u6708\u4efd\u4e0d\u4f1a\u5728Me,Ye\u8868\u793a\u7684\u6708\u4efd\u4e4b\u540e\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u8f93\u51fa<\/h4>\n\n\n\n<p>\u5bf9\u4e8e\u6bcf\u4e2a\u6d4b\u8bd5\u6570\u636e\uff0c\u5728\u4e00\u884c\u8f93\u51fa\u5728Ys\u5e74Ms\u6708\uff08\u5305\u62ecMs\u6708\uff09\u5230Ye\u5e74Me\u6708\uff08\u5305\u62ecMe\u6708\uff09\u4e4b\u95f4\u7684\u5e78\u8fd0\u6708\u7684\u6570\u91cf\u548c\u597d\u6708\u7684\u6570\u91cf\uff0c\u4ee5\u7a7a\u683c\u9694\u5f00\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u6837\u4f8b\u8f93\u5165 \u590d\u5236<\/h4>\n\n\n\n<p>&nbsp;2<br>&nbsp;2006 9 2006 9<br>&nbsp;2006 7 2006 9<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">\u6837\u4f8b\u8f93\u51fa \u590d\u5236<\/h4>\n\n\n\n<p>&nbsp;1 0<br>&nbsp;1 1<\/p>\n<\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">\u601d\u8def\uff1a<\/h3>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>\u8fd9\u9053\u9898\u9996\u5148\u6709\u4e2a\u9677\u9631\u662f\uff0c\u5b83\u8981\u4e00\u76f4\u8bfb\u5165\u5230\u6587\u4ef6\u5c3e\u3010\u4e0d\u6b62\u4e00\u7ec4\u6570\u636e\u3011<\/p>\n\n\n\n<p>\u7136\u540e\u5c31\u662f\u6309\u9898\u76ee\u6a21\u62df\uff0c\u5927\u6982\u601d\u8def\u5c31\u662f\uff1a<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>\u5224\u65ad\u95f0\u5e74<\/li>\n\n\n\n<li>\u5224\u65ad\u6bcf\u4e2a\u6708\u6700\u540e\u4e00\u5929\u662f\u54ea\u4e00\u5929<\/li>\n\n\n\n<li>\u5224\u65ad\u67d0\u5e74\u67d0\u6708\u67d0\u5929\u662f\u661f\u671f\u51e0\u3010\u91cd\u70b9\u3011<\/li>\n\n\n\n<li>\u4ece\u7b2c1\u5929\u5f80\u540e\u627e\u597d\u6708<\/li>\n\n\n\n<li>\u4ece\u6700\u540e1\u5929\u5f80\u524d\u627e\u5e78\u8fd0\u6708<\/li>\n<\/ol>\n\n\n\n<p>\u600e\u4e48\u5224\u65ad\u67d0\u5e74\u67d0\u6708\u67d0\u5929\u662f\u661f\u671f\u51e0\uff1f\u4e24\u79cd\u529e\u6cd5\uff0c\u4e00\u4e2a\u662f\u516c\u5f0f\u6cd5\uff0c\u53e6\u4e00\u4e2a\u5c31\u662f\u66b4\u529b\u3002<\/p>\n\n\n\n<p>\u516c\u5f0f\u6cd5\u5c31\u662f\u7528Zeller\u516c\u5f0f\u76f4\u63a5\u6c42\uff0c\u66b4\u529b\u5c31\u662f\uff0c\u6bd4\u5982\u6211\u4eec\u77e5\u90531\u5e741\u67081\u65e5\u662f\u661f\u671f\u516d\uff0c\u5728\u8fd9\u4e2a\u57fa\u7840\u4e0a\u7edf\u8ba1\u603b\u5929\u6570\u3010\u4ece\u5f53\u524d\u5e74\u6708\u65e5\u52301\u5e741\u67081\u65e5\u4e4b\u95f4\u7684\u603b\u5929\u6570\u3011\uff0c\u7136\u540e\u5c31\u53ef\u4ee5\u6c42<\/p>\n\n\n\n<p>\u6839\u672c\u6ca1\u5fc5\u8981\u6a21\u62df\u9898\u76ee\u8bf4\u7684\u90a3\u4e9b\u8981\u6c42\uff0c\u56e0\u4e3a\u6570\u636e\u91cc\u6839\u672c\u6ca1\u6709\u90a3\u4e9b\u590d\u6742\u7684\u3002\u8fde\u95f0\u5e74\u90fd\u53ea\u9700\u8981\u7528$\\text{year} \\mod 4 = 0 \\quad \\text{AND} \\quad \\text{year} \\mod 100 \\neq 0 \\quad \\text{OR} \\quad \\text{year} \\mod 400 = 0$\u5224\u65ad\u5c31\u591f\u4e86\u3002<\/p>\n\n\n\n<p>\u4e0b\u65b9\u4ee3\u7801\u4e00\u5c31\u662f\u7528\u4e86\u5404\u79cd\u516c\u5f0f+\u5b8c\u6210\u9898\u76ee\u8981\u6c42\u505a\u7684<\/p>\n\n\n\n<p>\u4e0b\u65b9\u4ee3\u7801\u4e8c\u662f\u7528\u4e86Zeller\u516c\u5f0f\u505a\u7684<\/p>\n\n\n\n<p>\u4e0b\u65b9\u4ee3\u7801\u4e09\u662f\u7528\u4e86\u66b4\u529b\u505a\u7684<\/p>\n<\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\">\u4ee3\u7801C\u8bed\u8a00 \u4ee3\u7801\u4e00\uff1a<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>#include &lt;stdio.h>\r\n\/\/\u5224\u65ad\u662f\u5426\u4e3a\u95f0\u5e74\r\nint isLeapYear(int year) {\r\n    if(year == 1700){\r\n        return 1;\r\n    }\r\n    if(year > 1582 &amp;&amp; year != 1700)\r\n        return (year % 4 == 0 &amp;&amp; year % 100 != 0) || (year % 400 == 0);\r\n    if(year &lt; 1582){\r\n        return year % 4 == 0;\r\n    }\r\n    return 0;\r\n}\r\n\/\/\u83b7\u53d6\u4e00\u4e2a\u6708\u7684\u6700\u540e\u4e00\u5929\r\nint daysInMonth(int year, int month) {\r\n    int days&#91;12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};\r\n    if (month == 2 &amp;&amp; isLeapYear(year)) {\r\n        return 29;\r\n    }\r\n    return days&#91;month - 1];\r\n}\r\n\/\/\u91c7\u7528\u516c\u5f0f\r\nint dayOfWeek(int y, int m, int d) {\r\n    if (m == 1 || m == 2) {\r\n        m += 12;\r\n        y--;\r\n    }\r\n    if ((y > 1752) || (y == 1752 &amp;&amp; (m > 9 || (m == 9 &amp;&amp; d >= 14)))) {\r\n        \/\/ 1752\u5e749\u670814\u65e5\u53ca\u4e4b\u540e\u7684\u65e5\u671f\r\n        return (d + 2 * m + 3 * (m + 1) \/ 5 + y + y \/ 4 - y \/ 100 + y \/ 400) % 7 + 1;\r\n    } else if ((y &lt; 1582) || (y == 1582 &amp;&amp; (m &lt; 10 || (m == 10 &amp;&amp; d &lt; 5)))) {\r\n        \/\/ 1582\u5e7410\u67084\u65e5\u4e4b\u524d\u7684\u65e5\u671f\r\n        return (d + 2 * m + 3 * (m + 1) \/ 5 + y + y \/ 4 + 5) % 7 + 1;\r\n    } else {\r\n        \/\/ 1582\u5e7410\u67084\u65e5\u81f31752\u5e749\u67083\u65e5\u7684\u65e5\u671f\r\n        return (d + 2 * m + 3 * (m + 1) \/ 5 + y + y \/ 4 - y \/ 100 + y \/ 400) % 7 + 1;\r\n    }\r\n}\r\n\/\/ \u67e5\u627e\u4e00\u4e2a\u6708\u4e2d\u6700\u540e\u4e00\u4e2a\u5de5\u4f5c\u65e5\r\nint findLastWeekday(int year, int month) {\r\n    int day = daysInMonth(year,month);\r\n    \/\/\u5982\u679c\u662f\u661f\u671f\u516d\u6216\u661f\u671f\u5929\r\n    while (dayOfWeek(year, month, day) == 6 || dayOfWeek(year,month,day) == 7){\r\n        day--;\r\n    }\r\n    return day;\r\n}\r\n\/\/ \u67e5\u627e\u4e00\u4e2a\u6708\u4e2d\u7b2c\u4e00\u4e2a\u5de5\u4f5c\u65e5\r\nint findFirstWeekday(int year, int month) {\r\n    int day = 1;\r\n    \/\/\u5982\u679c\u662f\u661f\u671f\u516d\u6216\u661f\u671f\u5929\r\n    while (dayOfWeek(year,month,day) == 6 || dayOfWeek(year,month,day) == 7){\r\n        day++;\r\n    }\r\n    return day;\r\n}\r\n\r\nint main() {\r\n    int w;\r\n    while(~scanf(\"%d\", &amp;w)){\r\n        while (w--) {\r\n            int ys, ms, ye, me;\r\n            scanf(\"%d %d %d %d\",&amp;ys,&amp;ms,&amp;ye,&amp;me);\r\n            int luckyMonths = 0,goodMonths = 0;\r\n            for (int year = ys;year &lt;= ye;year++) {\r\n                int startMonth = (year == ys) ? ms : 1;\/\/\u8d77\u59cb\u6708\u7279\u5224\r\n                int endMonth = (year == ye) ? me : 12;\/\/\u7ec8\u6b62\u6708\u7279\u5224\r\n                for (int month = startMonth;month &lt;= endMonth;month++) {\r\n                    \/\/\u5982\u679c\u6700\u540e\u4e00\u4e2a\u5de5\u4f5c\u65e5\u662f\u661f\u671f\u4e94\r\n                    if (dayOfWeek(year,month,findLastWeekday(year, month)) == 5) {\r\n                        luckyMonths++;\/\/\u5e78\u8fd0\u6708\r\n                    }\r\n                    \/\/\u5982\u679c\u7b2c\u4e00\u4e2a\u5de5\u4f5c\u65e5\u662f\u661f\u671f\u4e00\r\n                    if (dayOfWeek(year,month,findFirstWeekday(year, month)) == 1) {\r\n                        goodMonths++;\/\/\u597d\u6708\r\n                    }\r\n                }\r\n            }\r\n            printf(\"%d %d\\n\",luckyMonths,goodMonths);\r\n        }\r\n    }\r\n    \r\n    return 0;\r\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">\u4ee3\u7801C\u8bed\u8a00 \u4ee3\u7801\u4e8c\uff1a<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>#include &lt;stdio.h>\r\n\/\/\u5224\u65ad\u662f\u5426\u4e3a\u95f0\u5e74\r\nint isLeapYear(int year) {\r\n    if(year == 1700){\r\n        return 1;\r\n    }\r\n    if(year > 1582 &amp;&amp; year != 1700)\r\n        return (year % 4 == 0 &amp;&amp; year % 100 != 0) || (year % 400 == 0);\r\n    if(year &lt; 1582){\r\n        return year % 4 == 0;\r\n    }\r\n    return 0;\r\n}\r\n\/\/\u83b7\u53d6\u4e00\u4e2a\u6708\u7684\u6700\u540e\u4e00\u5929\r\nint daysInMonth(int year, int month) {\r\n    int days&#91;12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};\r\n    if (month == 2 &amp;&amp; isLeapYear(year)) {\r\n        return 29;\r\n    }\r\n    return days&#91;month - 1];\r\n}\r\n\/\/\u516c\u5f0f\u6cd5\r\nint dayOfWeek(int y, int m, int d) {\r\n    if (m == 1 || m == 2) {\r\n        m += 12;\r\n        y--;\r\n    }\r\n    int h = (d + 2 * m + 3 * (m + 1) \/ 5 + y + y \/ 4 - y \/ 100 + y \/ 400) % 7;\r\n    return h + 1;\r\n}\r\n\/\/ \u67e5\u627e\u4e00\u4e2a\u6708\u4e2d\u6700\u540e\u4e00\u4e2a\u5de5\u4f5c\u65e5\r\nint findLastWeekday(int year, int month) {\r\n    int day = daysInMonth(year,month);\r\n    \/\/\u5982\u679c\u662f\u661f\u671f\u516d\u6216\u661f\u671f\u5929\r\n    while (dayOfWeek(year, month, day) == 6 || dayOfWeek(year,month,day) == 7){\r\n        day--;\r\n    }\r\n    return day;\r\n}\r\n\/\/ \u67e5\u627e\u4e00\u4e2a\u6708\u4e2d\u7b2c\u4e00\u4e2a\u5de5\u4f5c\u65e5\r\nint findFirstWeekday(int year, int month) {\r\n    int day = 1;\r\n    \/\/\u5982\u679c\u662f\u661f\u671f\u516d\u6216\u661f\u671f\u5929\r\n    while (dayOfWeek(year,month,day) == 6 || dayOfWeek(year,month,day) == 7){\r\n        day++;\r\n    }\r\n    return day;\r\n}\r\n\r\nint main() {\r\n    int w;\r\n    while(~scanf(\"%d\", &amp;w)){\r\n        while (w--) {\r\n            int ys, ms, ye, me;\r\n            scanf(\"%d %d %d %d\",&amp;ys,&amp;ms,&amp;ye,&amp;me);\r\n            int luckyMonths = 0,goodMonths = 0;\r\n            for (int year = ys;year &lt;= ye;year++) {\r\n                int startMonth = (year == ys) ? ms : 1;\/\/\u8d77\u59cb\u6708\u7279\u5224\r\n                int endMonth = (year == ye) ? me : 12;\/\/\u7ec8\u6b62\u6708\u7279\u5224\r\n                for (int month = startMonth;month &lt;= endMonth;month++) {\r\n                    \/\/\u5982\u679c\u6700\u540e\u4e00\u4e2a\u5de5\u4f5c\u65e5\u662f\u661f\u671f\u4e94\r\n                    if (dayOfWeek(year,month,findLastWeekday(year, month)) == 5) {\r\n                        luckyMonths++;\/\/\u5e78\u8fd0\u6708\r\n                    }\r\n                    \/\/\u5982\u679c\u7b2c\u4e00\u4e2a\u5de5\u4f5c\u65e5\u662f\u661f\u671f\u4e00\r\n                    if (dayOfWeek(year,month,findFirstWeekday(year, month)) == 1) {\r\n                        goodMonths++;\/\/\u597d\u6708\r\n                    }\r\n                }\r\n            }\r\n            printf(\"%d %d\\n\",luckyMonths,goodMonths);\r\n        }\r\n    }\r\n    \r\n    return 0;\r\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">\u4ee3\u7801C\u8bed\u8a00 \u4ee3\u7801\u4e09\uff1a<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>#include &lt;stdio.h>\r\n\/\/\u5224\u65ad\u662f\u5426\u4e3a\u95f0\u5e74\r\nint isLeapYear(int year) {\r\n    return (year % 4 == 0 &amp;&amp; year % 100 != 0) || (year % 400 == 0);\r\n}\r\n\/\/\u83b7\u53d6\u4e00\u4e2a\u6708\u7684\u6700\u540e\u4e00\u5929\r\nint daysInMonth(int year, int month) {\r\n    int days&#91;12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};\r\n    if (month == 2 &amp;&amp; isLeapYear(year)) {\r\n        return 29;\r\n    }\r\n    return days&#91;month - 1];\r\n}\r\n\/\/\u66b4\u529b\u6c42\u661f\u671f\u51e0\r\nint dayOfWeek(int year,int month,int day){\r\n    int sumDay = 0;\r\n    \/\/\u8ba1\u7b97\u5e74\u8f6c\u5316\u6210\u5929\r\n    for (int i = 1;i &lt; year;i++)\r\n    {\r\n        \/\/\u662f\u5426\u662f\u95f0\u5e74\r\n        if((i % 4 == 0 &amp;&amp; i % 100 != 0) || i % 400 == 0){\r\n            sumDay += 366;\r\n        }else{\r\n            sumDay += 365;\r\n        }\r\n    }\r\n    \/\/\u8ba1\u7b97\u6708\u8f6c\u5316\u6210\u5929\r\n    for(int j = 1;j &lt; month;j++){\r\n        if(j == 1 || j == 3 || j == 5 || j == 7 || j == 8 || j == 10 ){\r\n            sumDay += 31;\r\n        }else if( j == 2 ){\r\n            if((year % 4 == 0 &amp;&amp; year % 100 != 0) || year % 400 == 0){\r\n                sumDay += 29;\r\n            }else{\r\n                sumDay += 28;\r\n            }\r\n        }else{\r\n            sumDay += 30;\r\n        }\r\n    }\r\n    \/\/\u8ba1\u7b97\u5929\r\n    sumDay+= day ;\r\n    return sumDay % 7;\r\n}\r\n\/\/\u67e5\u627e\u4e00\u4e2a\u6708\u4e2d\u6700\u540e\u4e00\u4e2a\u5de5\u4f5c\u65e5\r\nint findLastWeekday(int year, int month) {\r\n    int day = daysInMonth(year, month);\r\n    \/\/\u5982\u679c\u662f\u661f\u671f\u516d\u6216\u661f\u671f\u5929\r\n    while (dayOfWeek(year, month, day) == 6 || dayOfWeek(year, month, day) == 0) {\r\n        day--;\r\n    }\r\n    return day;\r\n}\r\n\/\/\u67e5\u627e\u4e00\u4e2a\u6708\u4e2d\u7b2c\u4e00\u4e2a\u5de5\u4f5c\u65e5\r\nint findFirstWeekday(int year, int month) {\r\n    int day = 1;\r\n    \/\/\u5982\u679c\u662f\u661f\u671f\u516d\u6216\u661f\u671f\u5929\r\n    while (dayOfWeek(year, month, day) == 6 || dayOfWeek(year, month, day) == 0) {\r\n        day++;\r\n    }\r\n    return day;\r\n}\r\n\r\nint main() {\r\n    int w;\r\n    while(~scanf(\"%d\", &amp;w)){\r\n        while (w--) {\r\n            int ys, ms, ye, me;\r\n            scanf(\"%d %d %d %d\",&amp;ys,&amp;ms,&amp;ye,&amp;me);\r\n            int luckyMonths = 0,goodMonths = 0;\r\n            for (int year = ys;year &lt;= ye;year++) {\r\n                int startMonth = (year == ys) ? ms : 1;\/\/\u8d77\u59cb\u6708\u7279\u5224\r\n                int endMonth = (year == ye) ? me : 12;\/\/\u7ec8\u6b62\u6708\u7279\u5224\r\n                for (int month = startMonth;month &lt;= endMonth;month++) {\r\n                    \/\/\u5982\u679c\u6700\u540e\u4e00\u4e2a\u5de5\u4f5c\u65e5\u662f\u661f\u671f\u4e94\r\n                    if (dayOfWeek(year,month,findLastWeekday(year, month)) == 5) {\r\n                        luckyMonths++;\/\/\u5e78\u8fd0\u6708\r\n                    }\r\n                    \/\/\u5982\u679c\u7b2c\u4e00\u4e2a\u5de5\u4f5c\u65e5\u662f\u661f\u671f\u4e00\r\n                    if (dayOfWeek(year,month,findFirstWeekday(year, month)) == 1) {\r\n                        goodMonths++;\/\/\u597d\u6708\r\n                    }\r\n                }\r\n            }\r\n            printf(\"%d %d\\n\",luckyMonths,goodMonths);\r\n        }\r\n    }\r\n    \r\n    return 0;\r\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\u603b\u7ed3<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>\u9898\u76ee\u603b\u4f53\u96be\u5ea6\u4e0d\u96be\uff0c\u5c31\u662f\u5f97\u6162\u6162\u6a21\u62df\u3002<\/li>\n\n\n\n<li>6005\u6e38\u8239\u51fa\u79df\u548c6203 \u65f6\u533a\u8f6c\u6362\u96be\u5ea6\u8f83\u5927\uff0c\u8981\u8003\u8651\u7684\u8981\u7d20\u8f83\u591a\uff0c\u8bfb\u8005\u8981\u6162\u6162\u601d\u8003\u3002<\/li>\n\n\n\n<li>6204 \u5e78\u8fd0\u6708\u8981\u8003\u8651\u591a\u7ec4\u6837\u4f8b\uff0c\u4e0d\u7528\u770b\u90a3\u4e2a\u957f\u957f\u7684\u9898\u76ee\uff0c\u5bf9\u89e3\u9898\u6ca1\u6709\u5f71\u54cd\u3002<\/li>\n\n\n\n<li>\u6709\u4e2a\u5f88\u91cd\u8981\u7684\u5173\u4e8e\u65f6\u95f4\u7684\u601d\u60f3\u5c31\u662f\uff0c\u6807\u51c6\u5316\u3002\u6bd4\u5982\u628a\u4e00\u5929\u7684\u65f6\u95f4\u8f6c\u6362\u6210\u5206\u949f\u7b49\u7b49\u3002<\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<p>6001 \u7b2c\u51e0\u5929\uff1f \u9898\u76ee\u63cf\u8ff0 \u7ed9\u5b9a\u4e00\u4e2a\u65e5\u671f\uff0c\u8f93\u51fa\u8fd9\u4e2a\u65e5\u671f\u662f\u8be5\u5e74\u7684\u7b2c\u51e0\u5929\u3002 \u8f93\u5165 \u8f93\u5165\u6570\u636e\u6709\u591a\u7ec4\uff0c\u6bcf\u7ec4\u5360\u4e00\u884c\uff0c\u6570 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4,13,8],"tags":[],"class_list":["post-190","post","type-post","status-publish","format-standard","hentry","category-nenuoj","category-13","category-8"],"_links":{"self":[{"href":"https:\/\/www.nenuacm.top\/index.php\/wp-json\/wp\/v2\/posts\/190","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.nenuacm.top\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.nenuacm.top\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.nenuacm.top\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.nenuacm.top\/index.php\/wp-json\/wp\/v2\/comments?post=190"}],"version-history":[{"count":1,"href":"https:\/\/www.nenuacm.top\/index.php\/wp-json\/wp\/v2\/posts\/190\/revisions"}],"predecessor-version":[{"id":191,"href":"https:\/\/www.nenuacm.top\/index.php\/wp-json\/wp\/v2\/posts\/190\/revisions\/191"}],"wp:attachment":[{"href":"https:\/\/www.nenuacm.top\/index.php\/wp-json\/wp\/v2\/media?parent=190"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.nenuacm.top\/index.php\/wp-json\/wp\/v2\/categories?post=190"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.nenuacm.top\/index.php\/wp-json\/wp\/v2\/tags?post=190"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}