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 WinterFa1L 阅读(69) 评论(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 WinterFa1L 阅读(77) 评论(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 WinterFa1L 阅读(70) 评论(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 WinterFa1L 阅读(75) 评论(0) 推荐(0)