結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | sorahako0515 |
提出日時 | 2021-03-27 23:06:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 996 bytes |
コンパイル時間 | 1,313 ms |
コンパイル使用メモリ | 163,992 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-06 22:04:50 |
合計ジャッジ時間 | 1,704 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; constexpr ll MOD = 1000000007; #define REP(i, n) for (ll i = 0; i < (n); i++) #define REP2(i, x, n) for (ll i = x; i < (n); i++) #define PR(x) cout << (x) << "\n" #define PS(x) cout << (x) << " " #define PRYES(x) PR((x) ? "Yes" : "No") const long long INF = numeric_limits<long long>::max(); const long long DP_INF = 1 << 29; template <class T> using arr = vector<vector<T> >; using vint = vector<int>; using vll = vector<ll>; // SourceTest用出力マクロ #ifdef SOURCE_TEST #define SPR(x) PR(x) #define SPS(x) PS(x) #define STRACE(var) cout << #var << "=" << var << endl; #define SMAPTRACE(var) \ cout << #var << "=" \ << "{" << var.first << "," << var.second << "}" << endl; #else #define SPR(x) \ {} #define SPS(x) \ {} #define STRACE(var) \ {} #define SMAPTRACE(var) \ {} #endif int main() { PR("Hello World!"); return 0; }