wangyibo201026 @ 2021-11-28 09:30:39
哪位大佬来康康蒟蒻的代码:
https://www.luogu.com.cn/paste/fno6zfmb
不知道错哪里了(QAQ)。
by Dream_weavers @ 2021-11-28 09:32:30
freopen?
by KAMIYA_KINA @ 2021-11-28 09:42:55
我个人怀疑是 cin
单个字符的锅,luogu 的评测在这方面一直都有问题来着,试着读入一个字符串试一下。
by KAMIYA_KINA @ 2021-11-28 09:45:46
可以试一下 stoi
这个函数。
by KAMIYA_KINA @ 2021-11-28 09:47:46
inline void add(string a, string b) {
int A = stoi(a) , B = stoi(b);
string ans = to_string(A + B);
cout << a << "+" << b << "=" << ans << endl;
cout << ans.size() + a.size() + b.size() + 2 << endl;
}
比如这样