結果

問題 No.9000 Hello World! (テスト用)
ユーザー pekempeypekempey
提出日時 2019-09-26 01:36:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 653 bytes
コンパイル時間 655 ms
コンパイル使用メモリ 71,184 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-24 06:40:50
合計ジャッジ時間 1,076 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

// https://github.com/pekempey/banana
#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 _3=0;
auto _4=readstr(_3);
auto _1=_4;
std::string _5="Hello World!";
auto _6=print(_5);
auto _7=_6;
long long _8=0;
auto _9=print_endline(_8);
auto _10=_9;
}
0