记录编号 310353 评测结果 AAAAAAAAAA
题目名称 [NOIP 2011]数字反转 最终得分 100
用户昵称 Gravatarsxysxy 是否通过 通过
代码语言 C++ 运行时间 0.021 s
提交时间 2016-09-22 13:52:17 内存使用 0.28 MiB
显示代码纯文本
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <algorithm>
#include <iostream>
#include <string>
using namespace std;
int main()
{
    freopen("reverse.in", "r", stdin);
    freopen("reverse.out", "w", stdout);
    string s;
    cin >> s;
    int f = 1;
    long long r;
    if(s[0] == '-')f = -1;
    reverse(s.begin(), s.end());
    sscanf(s.c_str(), "%lld", &r);
    cout << r*f;
    return 0;
}