Loading

摘要: A - Biscuit Generator #include<bits/stdc++.h> using namespace std; const int N = 1e6 + 5; typedef long long LL; int a, b, t; int main(){ cin>>a>>b>>t; 阅读全文
posted @ 2021-02-09 11:14 dyhaohaoxuexi 阅读(54) 评论(0) 推荐(0) 编辑
摘要: A - New Year #include<bits/stdc++.h> using namespace std; const int N = 1e6 + 5; typedef long long LL; int n; int main(){ cin >> n; cout << 24 - n + 2 阅读全文
posted @ 2021-02-09 09:32 dyhaohaoxuexi 阅读(60) 评论(0) 推荐(0) 编辑
摘要: A - Already 2018 #include<bits/stdc++.h> using namespace std; const int N = 1e6 + 5; typedef long long LL; string s; int main(){ cin>>s; s[3] = '8'; c 阅读全文
posted @ 2021-02-09 08:46 dyhaohaoxuexi 阅读(55) 评论(0) 推荐(0) 编辑
摘要: A - Product #include<bits/stdc++.h> using namespace std; const int N = 1e6 + 5; typedef long long LL; int a, b; int main(){ cin >> a >> b; if ((a * b) 阅读全文
posted @ 2021-02-09 00:51 dyhaohaoxuexi 阅读(48) 评论(0) 推荐(0) 编辑