結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | hangry |
提出日時 | 2022-07-30 12:21:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,508 bytes |
コンパイル時間 | 1,544 ms |
コンパイル使用メモリ | 166,792 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 08:48:56 |
合計ジャッジ時間 | 2,072 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> //#include <atcoder> using namespace std; //using namespace atcoder; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define repab(i, a, b) for (int i = (int)(a); i <= (int)(b); i++) #define repabc(i, a, b, c) for (int i = (int)(a); i <= (int)(b); i += c) #define rrep(i, n) for (int i = (int)(n)-1; i >= 0; i--) #define rrepab(i, a, b) for (int i = (int)(b); i >= (int)(a); i--) #define rrepabc(i, a, b, c) for (int i = (int)(b); i >= (int)(a); i-=c) #define printl(...) cerr << "LINE=" << __LINE__ << " "; print(__VA_ARGS__) void in_print() {} template <class Head, class... Tail> void in_print(Head&& head, Tail&&... tail) { cerr << "," << head; in_print(forward<Tail>(tail)...); } void print() {} template <class Head, class... Tail> void print(Head&& head, Tail&&... tail) { cerr << head; in_print(forward<Tail>(tail)...); cerr << endl; } /* unsigned int randxor() { static unsigned int x=123456789,y=362436069,z=521288629,w=88675123; unsigned int t; t=(x^(x<<11));x=y;y=z;z=w; return( w=(w^(w>>19))^(t^(t>>8)) ); } */ //char grid[8][8]; //static const int dx[] = {0,-1,0,1,1,-1,-1,1}; //static const int dy[] = {-1,0,1,0,1,1,-1,-1}; //static const char dir[] = {'L','U','R','D'}; //auto start_time = chrono::system_clock::now(); //auto end_time = chrono::system_clock::now(); //if (chrono::duration_cast<chrono::milliseconds>(end_time - start_time).count() > 500) int main() { string ad; cin >> ad; cout << "Hello World!" << endl; }