結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | あべし |
提出日時 | 2021-11-20 13:10:33 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,438 bytes |
コンパイル時間 | 2,680 ms |
コンパイル使用メモリ | 162,920 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-11 06:47:15 |
合計ジャッジ時間 | 3,177 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#include<bits/stdc++.h> #define int ll #define rep(i, N) for(int i = 0; i < (int)N; ++i) #define rep1(i, N) for(int i = 1; i <= (int)N; ++i) #define per(i, N) for(int i = N-1; i >= 0; --i) #define all(v) (v).begin(), (v).end() #define rall(v) (v).rbegin(), (v).rend() #define TakAo(ans) ans ? cout << "Takahashi\n" : cout << "Aoki\n" #define YesNo(ans) ans ? cout << "Yes\n" : cout << "No\n" #define yesno(ans) ans ? cout << "yes\n" : cout << "no\n" #define endl '\n' #define fi first #define se second #define pb push_back #define mkpr make_pair #define mktpl make_tuple using namespace std; using ll = int64_t; using ld = long double; const ld EPS = 1e-8; const ll INF = 1e9+10; const int MOD = 998244353; //const int MOD = 1e9+7; const int NIL = -1; ll cel(ll a, ll b){ return (a + b - 1) / b; } ll Gcd(ll a, ll b){ return b ? Gcd(b, a % b) : a; } ll Lcm(ll a, ll b){ return a / Gcd(a, b) * b; } ll sq(ll a){ return a * a; } template<class T> bool chmin(T &a, T b){ if(a > b){ a = b; return 1;} return 0; } template<class T> bool chmax(T &a, T b){ if(a <= b){ a = b; return 1;} return 0; } using P = pair<int, int>; using Tpl = tuple<int, int, int>; using vvec= vector<vector<int>>; using vvvec = vector<vector<vector<int>>>; void Main(){ string s; cin >> s; cout << "Hello, World!" << endl; } signed main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); cout << fixed << setprecision(15); Main(); return 0; }