SWPU_22_张竞锴
SWPU_22_张竞锴
全部文章
分类
题解(1)
归档
标签
去牛客网
登录
/
注册
SWPU_22_张竞锴的博客
全部文章
(共3篇)
题解 | 【模板】巴什博弈
n = int(input()) for i in range(n): a,b = map(int,input().split()) if a%(b+1): print("YES") else: print("NO") ...
2026-02-06
0
28
题解 | 躲藏
import sys MOD = 2000120420010122 for line in sys.stdin: a = line.strip().lower() ans = 0 c = 0 cw = 0 cwb = 0 for x in a: ...
2026-02-02
1
31
题解 | #养生茶#
#include <iostream> using namespace std; int lowbit(int x) { return x&(-x); } int ...
C++
2023-12-10
0
238