LeetCode 2023/12/01-2023/12/10 每日一題
A collection of LeetCode 2023/12 daily challenge. Part 1 from 12/01 to 12/10.
Codeforces Round 909 (Div. 3) A - F
Codeforces Round 909 (Div. 3) A - F 補題補題。 All problems solved by python A - Game with Integers (CF1899 A) 題意 兩個人玩遊戲,給定一個數 NNN , 每人能夠對數字進行執行 +1+1+1 或 −1-1−1 的操作,若操作完 NNN 是 333 的倍數則該名玩家獲勝,但若超過10次操作沒有結果,則後手獲勝,問先手的人能否獲勝。 思路 若第一輪先手無法獲勝,則後手必可以將先手的操作抵銷,故先手獲勝的條件是第一次操作就能獲勝,即 N mod 3N \bmod 3Nmod3 餘 111 或 222。 12345678T = int(input())for _ in range(T): N = int(input()) if N % 3 == 0: print("Second") else: print("First") B - 250 Thousand Tons of TNT...
LeetCode Weekly Contest 373 解題紀錄
第12次的LeetCode週賽。好像是離AK最近的一次,Q4前兩個關鍵點都想到了,就差臨門一腳了,可惜了。
【待更新】LeetCode Biweekly Contest 118 解題紀錄
第11次的LeetCode週賽。
【更新中】LeetCode 2023/11 每日一題 (Nov LeetCoding Challenge)
A collection of LeetCode 2023/11 daily challenge.
AtCoder Beginner Contest 317 題解 (A - E)
我好菜啊我好菜啊我好菜啊
AtCoder Beginner Contest 315 題解 (A - F)
為第一次打AtCoder做準備 ~
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick Start Create a new post 1$ hexo new "My New Post" More info: Writing Run server 1$ hexo server More info: Server Generate static files 1$ hexo generate More info: Generating Deploy to remote sites 1$ hexo deploy More info: Deployment