07 2022 档案

摘要:A. Round Down the Price AC代码 #include <bits/stdc++.h> #define IOS \ std::ios::sync_with_stdio(false); \ std::cin.tie(0); \ std::cout.tie(0); using PII 阅读全文
posted @ 2022-07-11 01:57 FoXreign 阅读(102) 评论(0) 推荐(0)
摘要:A. The Third Three Number Problem 题意 给你一个整数 $n$ ,构造满足等式 $(a \bigoplus b)+(b \bigoplus c)+(a \bigoplus c)=n$ 的三个整数 $a,b,c$ ,或说明这样的整数并不存在。 题目分析 根据样例猜了下如 阅读全文
posted @ 2022-07-05 23:56 FoXreign 阅读(50) 评论(0) 推荐(0)