結果

問題 No.9000 Hello World! (テスト用)
ユーザー threecoursethreecourse
提出日時 2017-06-23 23:23:45
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 538 bytes
コンパイル時間 877 ms
コンパイル使用メモリ 78,076 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-26 16:09:09
合計ジャッジ時間 1,312 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <cmath>
#include <cassert>
#define FOR(i,a,b) for(int i=(a);i<(b);i++)
#define REP(i,n) FOR(i,0,n)
#define rep(i,n) FOR(i,0,n)
#define DEBUG(x) cout<<#x<<": "<<x<<endl
#define vint vector<int>
#define vdouble vector<double>
#define vstring vector<string>
using namespace std;

#include<map>
#include<set>
#include<queue>

typedef long long ll;
typedef unsigned long long ull;

const int MAX_N = 1000000;

int main() {
	cout << "Hello World!" << endl;
}
0