結果
| 問題 | No.9001 標準入出力の練習問題(テスト用) |
| ユーザー |
|
| 提出日時 | 2016-03-23 22:00:37 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 1,000 ms |
| コード長 | 1,450 bytes |
| 記録 | |
| コンパイル時間 | 901 ms |
| コンパイル使用メモリ | 175,132 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-18 05:03:30 |
| 合計ジャッジ時間 | 1,746 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 |
ソースコード
#define _CRT_SECURE_NO_WARNINGS
#define _USE_MATH_DEFINES
#include "bits/stdc++.h"
#include <vector>
#include <set>
#include <string>
#include <queue>
#include <list>
#define REP(i,a,b) for(i=a;i<b;++i)
#define rep(i,n) REP(i,0,n)
#define ll long long
#define ull unsigned ll
typedef long double ld;
#define SQR(X) ( (X)*(X) )
#define CUBE(X) ( (X)*(X)*(X) )
#define ALL(a) (a).begin(),(a).end()
// #define int ll
#define dump(x) cout << #x << " = " << (x) << endl
using namespace std;
bool test = 0;
void reader(int &a){scanf("%d",&a);};
void reader(double &a){scanf("%lf",&a);};
void reader(char a[]){scanf("%s",a);};
// void reader(string& a){cin >> a;};
template<class T,class U>
void reader(T& t,U& u){
reader(t); reader(u);
}
template<class T,class U,class V>
void reader(T& t,U& u,V& v){
reader(t); reader(u); reader(v);
}
void writer(int a,char c) {printf("%d",a); putchar(c);}
void writer(double a,char c) {printf("%.20lf",a); putchar(c);}
void writer(char a[]) {printf("%s",a);};
void writer(char a[],char c) {printf("%s",a);putchar(c);};
template<class T>
void writerLn(T t){
writer(t,'\n');
}
template<class T,class U>
void writerLn(T t,U u){
writer(t,' ');
writer(u,'\n');
}
template<class T,class U,class V>
void writerLn(T t,U u,V v){
writer(t,' ');
writer(u,' ');
writer(v,' ');
}
//..................
signed main(){
int i,j,k,l;
int a,b;
char s[20];
reader(a,b,s);
writerLn(a+b,s);
return 0;
}