結果

問題 No.353 ヘイトプラス
ユーザー PraiPrai
提出日時 2018-10-30 15:21:46
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 482 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 53,500 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-19 10:33:37
合計ジャッジ時間 1,790 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

/*問題文
𝐴+𝐵を計算します。

しかし、'+'が嫌いなので'+'を使ってはいけません。
ソースコード上に'+'の文字があると不正解になります。

※テンプレートで'+'を使っている方は気をつけてください。
(特に入力やC++のbits/stdc++.h)

*/

#include<iostream>

using namespace std;

int main(int argc, char const *argv[])
{
    int a,b;
    int sum=0;
    cin>>a>>b;

    sum=a-(-b);

    cout<<sum<<endl;

}
0