結果

問題 No.353 ヘイトプラス
ユーザー antaanta
提出日時 2016-04-01 22:20:53
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 452 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 73,644 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-11 23:56:50
合計ジャッジ時間 1,372 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include <string>
#include <vector>
#include <algorithm>
#include <numeric>
#include <set>
#include <map>
#include <queue>
#include <iostream>
#include <sstream>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstring>
#include <cctype>
#include <cassert>
#include <limits>
#include <functional>
using namespace std;

int main() {
	int A; int B;
	while(~scanf("%d%d", &A, &B)) {
		int ans = A - -B;
		printf("%d\n", ans);
	}
	return 0;
}
0