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 #656 (Div. 3) 原文链接 https://www.cnblogs.com/-Dominate-/p/13550490.html A. Three Pairwise Maximums 思路 分类讨论,x、y、z三个数有两个数相等且另一个数小于等于这两个数就 阅读全文
posted @ 2020-08-23 20:16 DDDOMINATE 阅读(231) 评论(0) 推荐(0)