結果

問題 No.353 ヘイトプラス
ユーザー @abcde
提出日時 2019-02-19 22:46:26
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 273 bytes
コンパイル時間 1,445 ms
コンパイル使用メモリ 159,356 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-12 23:17:00
合計ジャッジ時間 2,841 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    
    // 1. 入力情報取得.
    LL A, B;
    cin >> A >> B;
    
    // 2. A と B の和は?
    LL ans = A - (-B);
    
    // 出力.
    cout << ans << endl;
    return 0;
    
}
0