結果

問題 No.3058 M + D Problem
ユーザー Solana4149Solana4149
提出日時 2020-10-05 21:53:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 261 bytes
コンパイル時間 1,543 ms
コンパイル使用メモリ 164,296 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 22:15:40
合計ジャッジ時間 3,213 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
const long long MOD = 1e9+7;
using namespace std;
#define ll long long
#define ar array
#define FOR(i,n) for(i=0;i<n;i++)

int main() {
	ios::sync_with_stdio(0);
	cin.tie(0);
	int m,n;
	cin >> m >> n;
	cout << m+n << endl;
	return 0;
}
0