Language: HTML document.onkeydown=function (e){ var currKey=0,evt=e||window.event; currKey=evt.keyCode||evt.which||evt.charCode; if (currKey == 123) { window.event.cancelBubble = true; window.event.returnValue = false; } }
摘要: Codeforces Round #653 (Div.3) 原文链接 https://www.cnblogs.com/-Dominate-/p/13284345.html A.Required Remainder 思路 水题,直接上代码。 #include<bits/stdc++.h> #defin 阅读全文
posted @ 2020-07-11 17:11 DDDOMINATE 阅读(199) 评论(0) 推荐(0)