結果

問題 No.2224 UFO Game
ユーザー norikame
提出日時 2022-12-10 11:46:36
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 1,999 ms
コンパイル使用メモリ 192,212 KB
最終ジャッジ日時 2025-02-09 09:05:37
ジャッジサーバーID
(参考情報)
judge5 / 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