結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー pekempeypekempey
提出日時 2019-09-26 01:50:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 992 bytes
コンパイル時間 716 ms
コンパイル使用メモリ 71,260 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-24 08:38:35
合計ジャッジ時間 1,034 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

// https://github.com/pekempey/banana
// -------------------------------------------
// let a = readint 0 in
// let b = readint 0 in
// let s = readstr 0 in
// print (a + b);
// print s
// -------------------------------------------
#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
template<class T> int print(T a) { std::cout << a << ' '; return 0; }
int print_endline(int dummy) { std::cout << '\n'; return 0; }
int readint(int dummy) { long long a; std::cin >> a; return a; }
std::string readstr(int dummy) { std::string a; std::cin >> a; return a; }
std::vector<long long> vecint(long long n) { return std::vector<long long>(n, 0); }
int main() {
long long _7=0;
auto _8=readint(_7);
auto _3=_8;
long long _9=0;
auto _10=readint(_9);
auto _4=_10;
long long _11=0;
auto _12=readstr(_11);
auto _5=_12;
auto &_13=_3;
auto &_14=_4;
auto _15=_13+_14;
auto _16=print(_15);
auto &_17=_5;
auto _18=print(_17);
auto _19=_18;
auto _20=_19;
auto _21=_20;
auto _22=_21;
}
0