結果

問題 No.2224 UFO Game
ユーザー trombiano1trombiano1
提出日時 2023-04-28 13:35:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 441 bytes
コンパイル時間 1,554 ms
コンパイル使用メモリ 168,264 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-17 14:04:48
合計ジャッジ時間 1,746 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 2 ms
6,820 KB
testcase_04 WA -
testcase_05 AC 2 ms
6,820 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
6,820 KB
testcase_09 WA -
testcase_10 AC 2 ms
6,820 KB
testcase_11 WA -
testcase_12 AC 2 ms
6,816 KB
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef DEBUG_
#include "../../../onlinejudge/dump.cpp"
#else
#define dump(...)
#endif

int main(void) {
    ios::sync_with_stdio(false);
    cin.tie(0);
    string s;
    cin >> s;
    if (s[0] != 'x') {
        cout << stoi(s) << endl;
    } else {
        dump((long long) (1LL << 31));
        cout <<  (long long)(1LL << 31) - stol(s.substr(1, (int) s.size())) << endl;
    }
    return 0;
}
0