結果

問題 No.8058 M + D Problem
ユーザー Solana4149Solana4149
提出日時 2020-10-05 21:53:41
言語 C++14
(gcc 13.3.0 + boost 1.87.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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 14 WA * 1
権限があれば一括ダウンロードができます

ソースコード

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