結果

問題 No.2224 UFO Game
ユーザー norikamenorikame
提出日時 2022-12-10 11:46:36
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 2,205 ms
コンパイル使用メモリ 201,992 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-13 04:33:23
合計ジャッジ時間 2,989 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

// 

#include <bits/stdc++.h>
using namespace std;

using ll = long long;

#define rep(i, n) for (int i=0; i<(int)(n); ++(i))
#define rep3(i, m, n) for (int i=(m); (i)<(int)(n); ++(i))
#define repr(i, n) for (int i=(int)(n)-1; (i)>=0; --(i))
#define rep3r(i, m, n) for (int i=(int)(n)-1; (i)>=(int)(m); --(i))
#define all(x) (x).begin(), (x).end()

int main() {
    string s;
    cin >> s;
    ll res = 0;
    if (s.front() == 'x') res = (1LL<<32) - stoll(s.substr(1));
    else res = stoll(s);
    cout << res << endl;
    return 0;
}
0