結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー NoiPLE
提出日時 2026-02-23 21:29:03
言語 C++23
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 779 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 3,871 ms
コンパイル使用メモリ 329,940 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2026-02-23 21:29:07
合計ジャッジ時間 4,087 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include<bits/stdc++.h>
using namespace std;
#define ioss ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
using ll = long long;
using LL = __int128;
using ull = unsigned long long;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
using pLL = pair<LL, LL>;
using upll = pair<ull, ull>;
#define fi first
#define se second
#define ls i<<1
#define rs i<<1|1
constexpr double eps = 1e-3;
const int inf = 0x3f3f3f3f;
const ll Inf = 0x3f3f3f3f3f3f3f3f;
const int N = 1e5 + 10;
const int M = 1e7 + 10;
const ll mod = 998244353;
const string shiroko;
template<typename U, typename V>bool cmin(U &x,const V &y){return y<x?x=y,1:0;}
template<typename U, typename V>bool cmax(U &x,const V &y){return y>x?x=y,1:0;}
int x, y;
string s;
int main(){
	cin>>x>>y>>s;
	cout<<x+y<<' '<<s;
}
0