結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー IobachevskyIobachevsky
提出日時 2016-03-28 22:56:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 1,056 bytes
コンパイル時間 722 ms
コンパイル使用メモリ 84,812 KB
実行使用メモリ 6,816 KB
最終ジャッジ日時 2024-04-10 05:16:19
合計ジャッジ時間 1,148 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>
#include <sstream>
#include <fstream>
#include <vector>
#include <deque>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <algorithm>
#include <functional>
#include <utility>
#include <bitset>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <stdio.h>
#include <string.h>
using namespace std;

#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define FORD(i, a, b) for(int i = (a); i >= (b); --i)
#define FORE(i, c) for(auto i = (c).begin(); i != (c).end(); ++i)
#define all(v) (v).begin(),(v).end()
 
#define vi vector<int>
#define pii pair<int,int>
#define X first
#define Y second
#define mp make_pair
#define pb push_back
 
#define debug(x) {cerr <<#x <<" = " <<x <<endl; }
#define debugv(x) {{cerr <<#x <<" = "; FORE(itt, (x)) cerr <<*itt <<", "; cerr <<endl; }}
#define debugt(t,n) {{cerr <<#t <<" = "; FOR(it,0,(n)) cerr <<t[it] <<", "; cerr <<endl; }}

#define ull unsigned long long

int main(){
     string s;
     int a,b;
     cin>>a>>b>>s;
     cout<<a+b<<" "<<s<<endl;
}
0