上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 36 下一页
摘要: # A 最小的数字 ```cpp #include using namespace std; #define int long long int32_t main() { ios::sync_with_stdio(false), cin.tie(0), cout.tie(0); int n; cin 阅读全文
posted @ 2023-06-01 22:18 PHarr 阅读(12) 评论(0) 推荐(0) 编辑
摘要: # **A - Similar String** ```cpp #include using namespace std; #define int long long int32_t main() { int n; string s , t; cin >> n >> s >> t; for( int 阅读全文
posted @ 2023-06-01 10:55 PHarr 阅读(97) 评论(0) 推荐(0) 编辑
摘要: # A. Another A+B Problem 暴力枚举出所有的情况,然后特判一下 ```cpp #include using namespace std; set res; int t; string a , b , c = "????????"; #define f(d) ((d[0]-'0' 阅读全文
posted @ 2023-05-31 20:17 PHarr 阅读(49) 评论(0) 推荐(0) 编辑
摘要: # A - 算法竞赛 ```cpp #include using namespace std; #define int long long void solve(){ int st , n , ed; cin >> st >> n; map cnt; for( int i = 1 , x ; i > 阅读全文
posted @ 2023-05-31 12:20 PHarr 阅读(385) 评论(0) 推荐(0) 编辑
摘要: # A. Grasshopper on a Line ```cpp #include using namespace std; #define int long long void solve(){ int x , k; cin >> x >> k; if( x % k == 0 ){ cout > 阅读全文
posted @ 2023-05-30 21:45 PHarr 阅读(24) 评论(0) 推荐(1) 编辑
摘要: # A. Musical Puzzle ```cpp #include using namespace std; void solve(){ int n; string s; cin >> n >> s; set cnt; for( int i = 0 ; i + 1 > t; while( t - 阅读全文
posted @ 2023-05-29 17:52 PHarr 阅读(34) 评论(0) 推荐(0) 编辑
摘要: # A. Drill Wood to Make Fire ```cpp #include using namespace std; #define int long long void solve(){ int n , s , v; cin >> n >> s >> v; cout = n) > t 阅读全文
posted @ 2023-05-25 21:27 PHarr 阅读(423) 评论(0) 推荐(0) 编辑
摘要: # A - Attack ```cpp #include using namespace std; #define int long long int32_t main() { int a , b; cin >> a >> b; cout using namespace std; #define i 阅读全文
posted @ 2023-05-25 17:45 PHarr 阅读(34) 评论(0) 推荐(0) 编辑
摘要: # A. 签到啦 排序做就好了 ```cpp #include using namespace std; #define int long long void solve(){ int n , w , res = 0; cin >> n >> w; vector a(n); for( auto & 阅读全文
posted @ 2023-05-22 22:28 PHarr 阅读(151) 评论(0) 推荐(0) 编辑
摘要: # A - Overall Winner ```cpp #include using namespace std; #define int long long int32_t main(){ ios::sync_with_stdio(false); cin.tie(nullptr) , cout.t 阅读全文
posted @ 2023-05-22 15:27 PHarr 阅读(22) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 36 下一页