結果

問題 No.9000 Hello World! (テスト用)
ユーザー m_patelm_patel
提出日時 2021-08-20 20:46:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 524 bytes
コンパイル時間 2,099 ms
コンパイル使用メモリ 192,428 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-22 03:10:00
合計ジャッジ時間 2,448 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

#define pb push_back
#define all(v) v.begin(), v.end()
#define printv(v) for(auto i: v) cout<<i<<' ';
#define endl "\n"
#define rep(i,l,r) for(int i=l; i<r; i++)
#define printmat(v) rep(i,0,v.size()){rep(j,0,v[0].size()){cout<<v[i][j]<<' ';}cout<<endl;}

typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef pair<int,int> pi;


int main(){
ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
    
    
    cout<<"Hello World!";
    
    
}
0