結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | kyomu |
提出日時 | 2023-07-23 18:16:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 553 bytes |
コンパイル時間 | 3,576 ms |
コンパイル使用メモリ | 229,964 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-09-24 19:52:33 |
合計ジャッジ時間 | 3,903 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; using ll=long long; #define all(v) v.begin(), v.end() #define overload4(_1, _2, _3, _4, name, ...) name #define rep1(n) for(ll i = 0; i < (n); ++i) #define rep2(i, n) for(ll i = 0; i < (n); ++i) #define rep3(i, a, b) for(ll i = (a); i < (b); ++i) #define rep4(i, a, b, c) for(ll i = (a); i < (b); i += (c)) #define rep(...) overload4(__VA_ARGS__, rep4, rep3, rep2, rep1)(__VA_ARGS__) const ll LINF = 0x1fffffffffffffff; int main() { cout<<"Hello World!"; }